Skip to content

Instantly share code, notes, and snippets.

@Lewiscowles1986
Last active August 16, 2017 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lewiscowles1986/bb2be137bf707d54dfd5818f70a0cbeb to your computer and use it in GitHub Desktop.
Save Lewiscowles1986/bb2be137bf707d54dfd5818f70a0cbeb to your computer and use it in GitHub Desktop.
Remove Audio From Video Nautilus

Remove Audio From Video Nautilus

This is a Nautilus non-destructive action (created using the utility nautilus-actions) to allow using ffmpeg to remove the audio from any videos. I use this for my mobile phone video's because I can't keep my trap shut whilst filming

Installation

mkdir -p ~/.local/share/file-manager/actions
cd ~/.local/share/file-manager/actions
wget https://gist.githubusercontent.com/Lewiscowles1986/bb2be137bf707d54dfd5818f70a0cbeb/raw/05b00294c44270090410f3e9572a2dc5853be361/remove-audio-from-video.desktop

Requirements

sudo apt-get install ffmpeg nautilus wget

Thanks

License

Creative Commons Licence
This work is licensed under a Creative Commons Attribution 4.0 International License.

[Desktop Entry]
Type=Action
Icon[en_GB]=emblem-videos-symbolic
Icon[en]=emblem-videos-symbolic
Icon[C]=emblem-videos-symbolic
ToolbarLabel[en_GB]=Remove Audio
ToolbarLabel[en]=Remove Audio
ToolbarLabel[C]=Remove Audio
Name[en_GB]=Remove Audio
Name[en]=Remove Audio
Name[C]=Remove Audio
Profiles=profile-zero;
TargetToolbar=true
[X-Action-Profile profile-zero]
MimeTypes=video/*;
Exec=ffmpeg -i %f -c:v h264 -an %w-noaudio.mp4
Name[en_GB]=Convert video to remove audio from files
Name[en]=Convert video to remove audio from files
Name[C]=Convert video to remove audio from files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment