blob: b76675d750d65696b4b1478d1b8e25dac18a88ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# convert.py
This tool can convert files from mp4, mkv, webw, mod or xm to mp3.
It use ffmpeg for the conversion.
# How to use
## Usage
```
convert.py [-n|-y] [SOURCE] [DESTINATION]
```
## Options
- `-n` <- Does't overwrite output files, and go to next file to be converted
if the specified output file already exists. It's the default option.
- `-y` <- Overwrite output files.
## Exemple
```
./convert.py video_folder_input audio_folder_output
```
Where `video_input` is a folder who contain some video files and `audio_output`
is the folder where the files converted are stored.
# Why ?
For fun and learn. And also because I use it for convert some video clip from
youtube to mp3 files for listen on my local server and on my mobile.
# LICENCE
This program is developped by <neodarz@neodarz.net> under the licence
[GPLV3](LICENCE.txt).
|