This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| ffmpeg_notes [2019-08-02 14:05] – nik | ffmpeg_notes [2023-08-27 12:27] (current) – [general exploration] nik | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ==== Ffmpeg - various notes ==== | ==== Ffmpeg - various notes ==== | ||
| + | |||
| + | ==== general exploration ==== | ||
| + | |||
| + | [[https:// | ||
| + | |||
| + | ==== add audio track to a video ==== | ||
| + | |||
| + | '' | ||
| + | |||
| + | ====extract audio from mp4 as mp3==== | ||
| + | |||
| + | '' | ||
| + | |||
| + | ====avoid audio/video reencode==== | ||
| + | |||
| + | options '-c:a copy' and '-c:v copy' | ||
| ====slo-mo video transcode (e.g. iphone)==== | ====slo-mo video transcode (e.g. iphone)==== | ||
| Line 11: | Line 27: | ||
| '' | '' | ||
| - | ====video | + | ====video |
| + | |||
| + | ...timelapsed (1 frame every 4 seconds) | ||
| '' | '' | ||
| + | ====image sequence | ||
| + | |||
| + | '' | ||
| + | ==== concat ==== | ||
| + | |||
| + | create a list of files (e.g. named files.txt)\\ | ||
| + | '' | ||
| + | '' | ||
| + | |||
| + | then...\\ | ||
| + | '' | ||
| + | |||
| + | alternatively, | ||
| + | '' | ||
| + | ffmpeg -f concat -i files.txt -c copy 000-qualia-RN101.mkv'' | ||
| + | |||
| + | also -> https:// | ||
| ====ffmpeg filters | ====ffmpeg filters | ||
| Line 131: | Line 166: | ||
| '' | '' | ||
| - | |||
| - | ====avoid audio/video reencode==== | ||
| - | |||
| - | options '-c:a copy' and '-c:v copy' | ||
| ====blending=== | ====blending=== | ||
| Line 142: | Line 173: | ||
| ====etc==== | ====etc==== | ||
| + | * tuning x265 output -> http:// | ||
| * further examples -> https:// | * further examples -> https:// | ||
| * An ffmpeg and SDL Tutorial or How to Write a Video Player in Less Than 1000 Lines (2015) http:// | * An ffmpeg and SDL Tutorial or How to Write a Video Player in Less Than 1000 Lines (2015) http:// | ||
| * various examples -> https:// | * various examples -> https:// | ||