录制RTSP流
我想录制来自摄像头的视频数据(通过 RTSP H.264)。有人可以帮助我如何使用 gstreamer 录制 rtsp 流吗?(请提供 gstreamer 命令行详细信息)。将以 MPEG4 格式录制
问候 基兰
I want to record video data coming from Camera(through RTSP H.264). Can anybody help me how to record rtsp stream using gstreamer?(Please provide gstreamer command line details). Recording will be in MPEG4 formate
Regards
Kiran
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会将视频流式传输并输出到您的屏幕。
gst-launch rtspsrc location=rtsp://some.server/url !解码器! xvimagesink
gst-launch uridecodebin uri=rtsp://some.server/url ! xvimagesink
要使用 MPEG4 将流录制到驱动器:
gst-launch rtspsrc location=rtsp://some.server/url !解码器! mpegtsmux!文件接收器位置=文件
rtspsrc 来自参考手册和 另一个有用的资源。
This will stream the video and output to your screen.
gst-launch rtspsrc location=rtsp://some.server/url ! decodebin ! xvimagesink
gst-launch uridecodebin uri=rtsp://some.server/url ! xvimagesink
To record the stream to your drive using MPEG4:
gst-launch rtspsrc location=rtsp://some.server/url ! decodebin ! mpegtsmux ! filesink location=file
rtspsrc from the reference manual and another useful resource.