Changes between Initial Version and Version 1 of Ticket #7101, comment 3


Ignore:
Timestamp:
Mar 22, 2018, 7:51:43 PM (8 years ago)
Author:
slhck

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7101, comment 3

    initial v1  
    1 Also happens if I don't do any audio processing, thus a more minimal reproducible example would be:
     1Yes, it works fine if there is no audio.
    22
    3 {{{
    4 ffmpeg \
    5 -y \
    6 -f lavfi -i testsrc=duration=60:size=320x240:rate=60,format=pix_fmts=yuv420p \
    7 -i click_and_count.m4a \
    8 -filter_complex " \
    9     [0:v] \
    10         loop=loop=240:size=1:start=0, setpts=N/FRAME_RATE/TB, \
    11         loop=loop=30:size=1:start=840, setpts=N/FRAME_RATE/TB, \
    12         loop=loop=84:size=1:start=1140, setpts=N/FRAME_RATE/TB, \
    13         loop=loop=48:size=1:start=1548, setpts=N/FRAME_RATE/TB \
    14     [stallvid]; \
    15         movie=filename=spinner-64-white.png:loop=0, setpts=N/(FRAME_RATE*TB)*2 \
    16     [spinner]; \
    17     [stallvid][spinner] \
    18         overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2:shortest=1:\
    19         enable='between(t,0,4.0)+between(t,14.0,14.5)+between(t,19.0,20.4)+between(t,25.8,26.6)' \
    20     [outv]
    21 " -shortest -map "[outv]" output.mp4
    22 }}}
     3(Sorry, earlier command was missing the `-an` option.)
     4
     5What could cause this, or how could I work around this?