# ffmpeg merge streams 1. Write an ffmpeg input configuration file `list.txt` of the form: ```txt file '' file '' file '' ... ``` 2. Run `ffmpeg -f concat -safe 0 -i list.txt -c copy ` ffmpeg has a quirk in which it rejects perfectly ordinary input paths by default, requiring the boilerplate `-safe 0` option to work with real world file paths.