Quantcast
Channel: VideoHelp Forum
Viewing all articles
Browse latest Browse all 45510

Batch Append 2-Part Episodes

$
0
0
I'm looking for a program to append episodes of a series that are named like so:

"Series Name - Episode 1 - Part 1.mp4""Series Name - Episode 1 - Part 2.mp4"
"Series Name - Episode 2 - Part 1.mp4"
"Series Name - Episode 2 - Part 2.mp4"

I just want to append part 2 to part 1 for each episode separately/

I've been searching around for longer than it probably would have taken to do it manually.

The only real answer I've stumbled upon was one where someone asked the same question as me, but answered it them self as they had scripting knowledge for Avidemux.

Quote:

Originally Posted by edd1234 View Post
Found 2 ways that work:

Code:

avidemux_cli.exe --load part1.mp4 --append part2.mp4 --output-format MP4 --save final.mp4
and

Code:

ffmpeg.exe -f concat -i list.txt -c copy final.mp4
where list.txt looks like:
Code:

file 'C:\part1.mp4'
file 'C:\part2.mp4'


I myself don't know how to script and was hoping I wouldn't have to learn for this one time thing. Is there a program that will do this? or can anyone point me in the right direction to understand the scripting?

Thanks!!!

Viewing all articles
Browse latest Browse all 45510

Trending Articles