On 12/20/16, Muhammad Faiz <[email protected]> wrote:
> On 12/20/16, Jonathan Girven <[email protected]> wrote:
>>> How if you move your multiple inputs into movie sources inside
>>> filter_complex?
>>
>> Sorry, I looked at the documentation here:
>>
>> https://ffmpeg.org/ffmpeg-filters.html#Video-Sources
>>
>> but couldn't see how to grab a file with this. Do you have an example?
>
> At this section: https://ffmpeg.org/ffmpeg-filters.html#Multimedia-Sources
>
> for example, from your filter_complex:
> "movie=movie0.mp4:s=dv+da [movie0_v][movie0_a];
> [movie0_v] setpts=PTS-STARTPTS[v0_trim0];
> [movie0_a] asetpts=PTS-STARTPTS[a0_trim0]; ..."
>
> Thank's
>

For safer approach, you may want separate video/audio in different movie sources
e.g:
"movie=movie0.mp4, setpts=PTS-STARTPTS [v0_trim0];
amovie=movie0.mp4, asetpts=PTS-STARTPTS [v1_trim0]; ... "

Thx
_______________________________________________
ffmpeg-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to