Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

linux convert mp3 to ogg

# single file
ffmpeg -i input.mp3 -c:a libvorbis -q:a 4 output.ogg

# whole directory
for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done
Comment

PREVIOUS NEXT
Code Example
Shell :: zsh fzf plugin 
Shell :: .gitignore is not ignoring directories 
Shell :: how to link a directory in linux 
Shell :: linux get full path 
Shell :: install zip raspberry pi 
Shell :: node number id generator 
Shell :: how to run eslint on the whole project 
Shell :: cudatoolkit installation 
Shell :: rsync with ssh key 
Shell :: edit cron jobs linux 
Shell :: push a new branch 
Shell :: add user to sudoer 
Shell :: minikube start with docker driver 
Shell :: ubuntu disable ssh root 
Shell :: install laravel globally mac 
Shell :: visual studio code ubuntu 
Shell :: is lubuntu better than ubuntu 
Shell :: ubuntu chrome 
Shell :: sourcetree change commit message 
Shell :: git commit 
Shell :: conda install multiprocess 
Shell :: ssh copy file from local to remote 
Shell :: install criterion ubuntu 
Shell :: RHEL check the firewall status 
Shell :: install ionic 6 
Shell :: soundcloud for ubuntu install command 
Shell :: add and remove users in Linux 
Shell :: install font on linux 
Shell :: find text in all files linux 
Shell :: how to use string format in powershell 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =