lisamelton / other_video_transcoding

Other tools to transcode videos.
MIT License
549 stars 25 forks source link

Will ffmpeg options pass through be implemented? #23

Closed 69dragons closed 4 years ago

69dragons commented 4 years ago

I like having the option of using Handbrake pass through flags in transcode-video. I am just wondering if something similar is in the works for other-transcode-video?

lisamelton commented 4 years ago

@69dragons Thank you for your question.

I don't plan on allowing options to be passed through other-transcode to ffmpeg. This isn't practical because of the incredibly complicated command line syntax of ffmpeg. That syntax allows not only multiple inputs but multiple outputs. And options can be placed between those inputs and outputs making the argument order significant. This is further compounded by ffmpeg's filter syntax and its argument order restrictions.

If you want that kind of control, you should really be using ffmpeg directly.

I hope that answers your question.

69dragons commented 4 years ago

It does, so I will use the dry run to get the video opts and synthesize the audio and subtitle opts on the fly.

Thank you for your help in that regard and your fast response.

lisamelton commented 4 years ago

@69dragons You are very welcome! And thanks for using my tools.

I'll close this now but feel free to comment here again.