Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
software:video [2018/01/07 00:02] cyril [convert] animated gif |
software:video [2024/05/12 22:48] (current) cyril [ffmpeg] |
||
---|---|---|---|
Line 183: | 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 " | ||
</ | </ | ||
Line 225: | Line 226: | ||
=> '' | => '' | ||
- | To cut an mp3 file (warning: ID3 tags are not copied). | + | 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 | ||
+ | </ | ||
=> '' | => '' |