diff --git a/README.md b/README.md index ed57c45..0d4d253 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,17 @@ FFmpeg is extremely powerful, but its command-line interface gets really complicated really quickly - especially when working with signal graphs and doing anything more than trivial. Take for example a signal graph that looks like this: -![Signal graph](https://raw.githubusercontent.com/kkroening/ffmpeg-python/master/doc/graph1.png) +![Signal graph](https://raw.githubusercontent.com/kkroening/ffmpeg-python/master/doc/graph1.png|width=300) The corresponding command-line arguments are pretty gnarly: ``` -ffmpeg -i input.mp4 -filter_complex "[0]trim=start_frame=10:end_frame=20,setpts=PTS-STARTPTS[v0];[0]trim=start_frame=30:end_frame=40,setpts=PTS-STARTPTS[v1];[0]trim=start_frame=50:end_frame=60,setpts=PTS-STARTPTS[v2];[v0][v1][v2]concat=n=3[v3]" -map [v3] output.mp4 +ffmpeg -i input.mp4 \ + -filter_complex "\ + [0]trim=start_frame=10:end_frame=20,setpts=PTS-STARTPTS[v0];\ + [0]trim=start_frame=30:end_frame=40,setpts=PTS-STARTPTS[v1];\ + [0]trim=start_frame=50:end_frame=60,setpts=PTS-STARTPTS[v2];\ + [v0][v1][v2]concat=n=3[v3]"\ + -map [v3] output.mp4 ``` Maybe this looks great to you, but if you haven't worked with FFmpeg before, this probably looks pretty alien. diff --git a/doc/graph1.png b/doc/graph1.png index 36846c8..1bc3b92 100644 Binary files a/doc/graph1.png and b/doc/graph1.png differ