PaulLereverend / NextcloudVideo_Converter

Video converter app for nextcloud
GNU Affero General Public License v3.0
58 stars 35 forks source link

Remove Audio Option #64

Open Dulanic opened 3 years ago

Dulanic commented 3 years ago

I think a great addition would be the ability to remove the audio track from videoes. I commonly upload videos from my phone and want to share them without the audio.

anon8675309 commented 3 years ago

In case this helps the original posters, this can be accomplished with ffmpeg:

ffmpeg -i $input_file -c copy -an $output_file

If not, maybe it'll help a developer in implementing this feature. A drop down with various options (copy original audio, convert to XYZ codec at ABC bitrate, none, etc.) would be great.