At the moment I have:
    time nice -n 10 ionice -c3      \
        ffmpeg -y                   \
            -ss  1.5                \
            -to 60.8                \
            -i "${inputVideo}"      \
            -acodec copy            \
            -vcodec libx264         \
            -preset veryfast        \
            -crf 26                 \
            -vf "transpose=cclock"  \
            "${inputVideoTurned}"

    time nice -n 10 ionice -c3                      \
        ffmpeg -threads 2 -y                        \
            -i "${inputVideoTurned}"                \
            -acodec aac                             \
            -vcodec libx264                         \
            -preset veryfast                        \
            -crf 26                                 \
            -vf "
                 select='between(t,   0.7,  13.0) +
                         between(t,  26.0,  67.0) +
                         between(t,  82.0,  87.2)',
                  setpts=N/FRAME_RATE/TB
            "                                       \
            -af "
                aselect='between(t,   0.7,  13.0) +
                         between(t,  26.0,  67.0) +
                         between(t,  82.0,  87.2)',
                 asetpts=N/SR/TB
            "                                       \
            "${outputVideo}"

Would it be possible to get the transpose merged into the between
statement? In principle that would lead to a little better output
video I think, because it is processed one time less. Or would it not
make much difference?

-- 
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof
_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to