Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Protostars committed Apr 20, 2024
1 parent d0437da commit 5a26d8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

- OpenGL渲染,流畅的弹幕体验,支持正常滚动模式/直播模式显示弹幕
- libmpv播放内核,保留mpv灵活的参数设置,支持实时进度条预览
- 树形播放列表,可随意组织视频文件
- 强大的树形播放列表,可随意组织视频文件,支持添加WebDAV合集
- 支持所有主流视频网站弹幕搜索下载,同时可以通过脚本支持更多弹幕来源
- 灵活的弹幕屏蔽规则设定,支持自动合并相似弹幕、分析标注弹幕事件,提升观看体验
- 支持批量管理弹幕池、弹幕时间轴调整,更好地处理本地视频和网站上的视频时长不一致的情况
Expand All @@ -38,6 +38,7 @@ KikoPlay基于以下项目:
- zlib 1.2.11
- [QtWebApp](http://stefanfrings.de/qtwebapp/index.html)
- Lua 5.3
- [qwebdavlib](https://github.com/mhaller/qwebdavlib)

编译环境: Windows平台使用MSVC2019,gcc 7.3.0(其他版本未测试),其他平台依照平台推荐配置(包管理器/Xcode)

Expand Down
2 changes: 1 addition & 1 deletion UI/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1717,7 +1717,7 @@ void PlayerWindow::setupSignals()
timeLabel->setText("00:00"+this->totalTimeStr);
static_cast<DanmuStatisWidget *>(danmuStatisBar)->setDuration(ts);
const PlayListItem *currentItem=GlobalObjects::playlist->getCurrentItem();
if (currentItem && GlobalObjects::mpvplayer->getSeekable())
if (currentItem)
{
if (currentItem->playTime > 15 && currentItem->playTime < ts - 15)
{
Expand Down

0 comments on commit 5a26d8c

Please sign in to comment.