Reputation: 1177
I have a C# application calling FFMPEG. Everything is finally starting to work except some people have uploaded different file types with the same name. example being video.mpg and video.mov. FFMPEG is taking the original files and creating a MP4 file out of them with the same name. of course when the first file is created it works fine but the second file is created and it requires interaction by me typing "Y" and hitting enter. is there a force overwrite option or a force rename option?
Upvotes: 3
Views: 8028
Reputation: 93309
-y
forces overwrite. -n
aborts upon output name collision. There is no auto output rename function.
Upvotes: 15