(no title)
drewp
|
1 year ago
Can you recommend a tool for dicing up 2h digitizations of VHS tapes? I want to play the 2h video, seek around easily, mark 'chapters' and give them filenames, then do a no-transcode rough cut extraction of each chapter into its own video.
wonger_|1 year ago
jazzyjackson|1 year ago
numpad0|1 year ago
j45|1 year ago
drewp|1 year ago
pdyc|1 year ago
ffmpeg -i input.mp4 -ss 00:00:00 -to 0:30:00 -c:v copy -c:a copy chapter1.mkv
u can just copy paste it 10 times in your text editor, than adjust ss, to times using any video player that can play vhs file.
drewp|1 year ago
I want the player ui (I'm using mpv) to have a command that:
1. Remembers the last end time to use as this chapter's start time
2. Gets the current time to use as chapter-end.
3. Accepts the name (e.g. 'chapter1').
4. Runs the ffmpeg copy command.
Perhaps mpv+lua can already handle this. I see commands for setting a loop range and for calling a subprocess. Not sure how I'd input the chapter name. Maybe I'll have an LLM name the chapters for me :)