-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme.txt
22 lines (16 loc) · 961 Bytes
/
Readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
******************************************************************************************************
1.Place it inside the folder having mp4 files
2.Run Convert2Mp3.exe (in admin Mode is possible)
3.All the mp4 files will get converted to mp3.If the file names have some character like ' or ` it will
show error.
******************************************************************************************************
*************OtherOptions*****************************************************************************************
For converting only .mp4 files:
mkdir outputs
for f in *.mp4; do ffmpeg -i "$f" -c:a libmp3lame "outputs/${f%.mp4}.mp3"; done
For converting .m4a, .mov, and .flac:
mkdir outputs
for f in *.{m4a,mov,flac}; do ffmpeg -i "$f" -c:a libmp3lame "outputs/${f%.*}.mp3"; done
For converting anything use the "*" wildcard:
mkdir outputs
for f in *; do ffmpeg -i "$f" -c:a libmp3lame "outputs/${f%.*}.mp3"; done