feat 处理命令行输入.

This commit is contained in:
2024-09-29 09:13:39 +08:00
parent 9fcf3e18e1
commit 32fa27ef87
2 changed files with 21 additions and 2 deletions

6
src/merge.rs Normal file
View File

@@ -0,0 +1,6 @@
use std::path::Path;
use std::io::Result;
pub fn merge_video_from_path(path: &Path) -> Result<()> {
Ok(())
}