I am trying video playback using gstreamer. I want to play video files one after another without stopping. I tried the following method, but the second file did not play.
$gst-launch-1.0 conact name=c ! autovideosink filesrc location="video0.mp4" ! decodebin ! c. filesrc location="video1.mp4" ! decodebin ! c.
Why doesn't the second file play correctly?