Differences
This shows you the differences between two versions of the page.
Both sides previous revision
Previous revision
Next revision
|
Previous revision
|
ffmpeg [2021/05/03 18:00] sqbell [Przyspieszenie filmu] |
ffmpeg [2021/05/03 21:31] (current) sqbell |
INFO: | INFO: |
* https://superuser.com/questions/1261678/how-do-i-speed-up-a-video-by-60x-in-ffmpeg | * https://superuser.com/questions/1261678/how-do-i-speed-up-a-video-by-60x-in-ffmpeg |
| |
| ==== Obrót, przyspieszenie, overlay ==== |
| |
| <code> |
| ffmpeg -hwaccel auto -i DSC_5796.MOV -i ~/Dokumenty/elisa_watermark.png -filter_complex "[0]hflip,vflip,format=yuv420p,setpts=PTS/4[a];[a][1]overlay=main_w-overlay_w-10:10" -metadata:s:v rotate=0 -codec:v libx264 -preset slow -crf 22 -filter:a "atempo=4.0" -movflags +faststart DSC_5796_rotated_and_fast_with_overlay.MOV |
| </code> |
| |
| ==== Obrót i overlay ==== |
| |
| <code> |
| ffmpeg -hwaccel auto -i DSC_5793.MOV -i ~/Dokumenty/elisa_watermark.png -filter_complex "[0]hflip,vflip,format=yuv420p[a];[a][1]overlay=main_w-overlay_w-10:10" -metadata:s:v rotate=0 -codec:v libx264 -preset slow -crf 22 -c:a copy -movflags +faststart DSC_5793_rotated_and_slow_with_overlay.MOV |
| </code> |