播放本地文件
GStreamer 通用使用方法
4.2 播放本地文件
最简单的播放方法:
gst-play-1.0 test.mp4使用 playbin:
gst-launch-1.0 playbin uri=file:///absolute/path/test.mp4使用 uridecodebin 并指定视频输出:
gst-launch-1.0 uridecodebin uri=file:///absolute/path/test.mp4 \
! autovideosink文件 URI 应使用绝对路径,并写成 file:///path/to/file。

