Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

extract audio from video ffmpeg

ffmpeg -i sample.avi -q:a 0 -map a sample.mp3
Comment

extract audio from video ffmpeg

ffmpeg -i input-video.avi -vn -acodec copy output-audio.aac
Comment

ffmpeg extract images from video

# extract single image from timestamp
# -ss : seek to position
# -vframes:v 1 : extract single image
ffmpeg -i input.mov -ss 00:00:15 -vframes:v 1 out.png
Comment

PREVIOUS NEXT
Code Example
Shell :: how to run exe file with shell 
Shell :: find home dir for user 
Shell :: clamav scan system 
Shell :: how to download git for mac 
Shell :: git stash drop 
Shell :: kubernetes command line to scale down pods 
Shell :: kill all process linux 
Shell :: pip install in jupyter notebook 
Shell :: bash get file full path 
Shell :: remove unused images docker manually version 1.12.6 
Shell :: .nvm bash 
Shell :: update wsl 
Shell :: Cargo, the Rust package manager, is not installed or is not on PATH. 
Shell :: linux create folder 
Shell :: navigate to folder mac1 
Shell :: git go back a commit 
Shell :: Run Google Colab With Local Files 
Shell :: install docker ubuntu 
Shell :: install vlc on ubuntu 20.04 
Shell :: windows history command 
Shell :: install virtualbox extension pack from command line 
Shell :: conditional dockerfile 
Shell :: terminal delete all files that start with 
Shell :: ssh-keygen -t rsa 
Shell :: git remove directory 
Shell :: base64 decode command line ubuntu 
Shell :: git get develop changes to my branch 
Shell :: remove letter in string bash 
Shell :: kubernetes shell into pod 
Shell :: remove yarn 0.32+git 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =