#player #egui #ffmpeg #cross #rust

bin+lib door_player

Door Player, Cross by ffmpeg and egui

1 unstable release

0.3.1 Nov 30, 2023
0.3.0 Nov 18, 2023
0.2.9 Nov 11, 2023
0.2.6 Oct 27, 2023
0.1.2 Sep 29, 2023

#190 in Multimedia

Download history 14/week @ 2023-09-25 2/week @ 2023-10-02 78/week @ 2023-10-16 66/week @ 2023-10-23 38/week @ 2023-10-30 37/week @ 2023-11-06 33/week @ 2023-11-13 32/week @ 2023-11-20 75/week @ 2023-11-27

205 downloads per month

Apache-2.0

130KB
2.5K SLoC

player

Door player is cross-platform and simple, it is a good project for learning rust egui ffmpeg  

Features:

  1. Play mp4/mkv video file
  2. Embedded subtitle
  3. Fast forward by the Packet(not support rewind)
  4. Fast forward by the Frame(not support rewind)
  5. Next/Pre file
  6. Keyboard
    • Space/Click-left -> toggle play or pause
    • Esc -> Close
    • Double Click/F1 -> toggle Full Screen
    • → Arrow Left -> Fast forward packets/frames/milliseconds
    • ← Arrow Right -> Fast rewind milliseconds
    • ↑ Arrow Up/+ -> Volume +
    • ↓ Arrow Down/- -> Volume -
    • Tab -> Tab Seek
    • Ctrl + Tab -> save current position for "Tab"
  7. Other

build

ffmpeg

Ubuntu

sudo apt install libass-dev libavdevice-dev

window

   git clone https://github.com/microsoft/vcpkg.git
   cd  vcpkg
   .\bootstrap-vcpkg.bat
   .\vcpkg.exe install ffmpeg
   set FFMPEG_DIR=C:/lang/vcpkg/installed/x64-windows

ffmpeg(just record)

clone the ffmpeg
cd ffmpeg
[//]: # (// --enable-libass --enable-avfilter : add filter subtitles ) ./configure --enable-gpl --enable-static --enable-libass --enable-avfilter --enable-libx264 --enable-pic --enable-ffplay --enable-decoder=pcm* make -j16 && sudo make install && sudo make uninstall

font

the default fonts in egui is not support chinese, so get the free open fonts from web when builds
get the download url from github url:
github url: https://github.com/wordshub/free-font/blob/master/assets/font/%E4%B8%AD%E6%96%87/%E6%96%87%E6%B3%89%E9%A9%BF%E7%B3%BB%E5%88%97/%E6%96%87%E6%B3%89%E9%A9%BF%E5%BE%AE%E7%B1%B3%E9%BB%91.ttc
rule: https://[github_user_id].github.io/[repo_name]/ , no master branch
download url: https://wordshub.github.io/free-font/assets/font/%E4%B8%AD%E6%96%87/%E6%96%87%E6%B3%89%E9%A9%BF%E7%B3%BB%E5%88%97/%E6%96%87%E6%B3%89%E9%A9%BF%E6%AD%A3%E9%BB%91.ttc
see: https://github.com/orgs/community/discussions/42655#discussioncomment-5669289
https://nvm-sh.github.io/nvm/blob/v0.39.5/install.sh

see

egui-video(player) First version of door player is base on this project
small-player
ffmpeg-cpal-play-audio
stainless-ffmpeg
ffplay源码分析
ffplay源码分析4-音视频同步
ffplay
ffmpeg
ffmpeg播放器
学习如何使用 FFmpeg 打造自己的播放器
将音视频时钟同步封装成通用模块
FFmpeg 入门(5):视频同步

Dependencies

~15–60MB
~1M SLoC