Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ffmpeg m4a to mp3

ffmpeg -i input.m4a -c:a libmp3lame -q:a 8 output.mp3
Comment

ffmpeg change audio codec from m4a to mp3

$ mkdir newfiles
$ for f in *.m4a; do ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 newfiles/"${f%.m4a}.mp3"; done
Comment

ffmpeg change audio codec from m4a to mp3

 ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 newfiles/"${f%.m4a}.mp3";
Comment

PREVIOUS NEXT
Code Example
Shell :: or create a new repository on the command line 
Shell :: zip exclude directory 
Shell :: shell get creation date of file 
Shell :: git remove file 
Shell :: git show whole file at commit 
Shell :: install tainwind on laravel 
Shell :: git initialize 
Shell :: How to delete dir, subdirectory, fils all in cmd 
Shell :: doxygen install 
Shell :: créer un script linux 
Shell :: comment copier un fichier linux 
Shell :: sed multiple files 
Shell :: how to shutdown system immediately with shutdown command 
Shell :: yum stands for in linux 
Shell :: docker best practices 
Shell :: scp command 
Shell :: dir command list all files and subdirectories 
Shell :: git commands cheat sheet 
Shell :: check my current branch git 
Shell :: mac make bootable usb 
Shell :: ppm to ppb 
Shell :: git hub nvm 
Shell :: Syntax error: word unexpected (expecting "in") 
Shell :: pyang installtion ubuntu 
Shell :: sudo -s su root in one line 
Shell :: tiny core shutdown 
Shell :: Correct Folder Permissions Ubuntu 18.04 Server 
Shell :: error: Setup script exited with error: libhdf5.so: cannot open shared object file: No such file or directory 
Shell :: @ module not install webstorm vue 
Shell :: splunk error can not create trial 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =