Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
software:video [2017/06/24 23:45] cyril [mp3] |
software:video [2024/05/12 22:48] (current) cyril [ffmpeg] |
||
---|---|---|---|
Line 47: | Line 47: | ||
| convert im3.png - -append final.png | | convert im3.png - -append final.png | ||
</ | </ | ||
+ | |||
+ | === Create animated GIF === | ||
+ | |||
+ | < | ||
=== Formats === | === Formats === | ||
Line 179: | Line 183: | ||
</ | </ | ||
- | * encode video from images sequence:< | + | * encode video from images sequence |
- | ffmpeg -r 50 -i 01/ | + | ffmpeg -r 50 -i 01/ |
+ | ffmpeg -r 10 -pattern_type glob -i " | ||
</ | </ | ||
* cut clip (ss is start time, t is duration):< | * cut clip (ss is start time, t is duration):< | ||
- | ffmpeg -i in.avi -ss 00:00:23 -t 00:00:19 out.avi | + | ffmpeg -i in.avi -ss 00:00:23 -t 00: |
</ | </ | ||
Line 217: | Line 222: | ||
<code bash> | <code bash> | ||
lame -V2 --vbr-new -q0 --lowpass 10 -s 22.05 -b32 file.wav file.mp3 | lame -V2 --vbr-new -q0 --lowpass 10 -s 22.05 -b32 file.wav file.mp3 | ||
+ | </ | ||
+ | |||
+ | => '' | ||
+ | |||
+ | To cut an mp3 file (warning: ID3 tags are not copied): | ||
+ | <code bash> | ||
+ | mp3cut -o output.mp3 -t 00: | ||
+ | </ | ||
+ | |||
+ | To concatenate mp3 files: | ||
+ | <code bash> | ||
+ | mp3cut -o output.mp3 input1.mp3 input2.mp3 input3.mp3 | ||
</ | </ | ||