Así es como lo describe ffmpeg:
‘-ss position (input/output)’
When used as an input option (before -i), seeks in this input file to position. When used as an output option (before an output filename), decodes but discards input until the timestamps reach position. This is slower, but more accurate.
position may be either in seconds or in hh:mm:ss[.xxx] form.
‘-itsoffset offset (input)’
Set the input time offset in seconds. [-]hh:mm:ss[.xxx] syntax is also supported. The offset is added to the timestamps of the input files. Specifying a positive offset means that the corresponding streams are delayed by offset seconds.
Entonces, ¿cuál es la diferencia entre los dos cuando ambos se usan como opciones de entrada? ¿Son iguales cuando -ss
se usa como input option
?
-ss 5
no se descarta. Aún así sería más apropiado para videos. El primer fotograma es visible durante los primeros cinco segundos, luego el video se reproduce como de costumbre. Tenga en cuenta que esto solo afecta a las transmisiones de video.-itsoffset 5
que no descarta ...-shortest
afectará a ambos-ss
y-itsoffset