Add player module

This commit is contained in:
2026-03-19 00:31:12 +08:00
parent 6fed397467
commit 152b5eb171

8
src/player/mod.rs Normal file
View File

@@ -0,0 +1,8 @@
//! 視頻播放模組
mod video;
mod audio;
mod ffmpeg;
mod controls;
pub use video::VideoPlayer;