Linux 下的 Live DVD 刻录
已经针对 .NET 平台提出了类似的问题,但我使用的是 Debian Linux。
我正在尝试找到一种直接从连接到采集卡的相机刻录视频 DVD 的解决方案。 该卡输出 MPEG-2 流,我想将其直接写入 DVD 光盘而不创建任何中间文件。
原因是当刻录完成后,DVD 可以很快完成并弹出。
我一直在研究像 cdrecord 和 dvdauthor 这样的命令行工具,但我认为他们不能做到这一点。 有什么建议 ?
A similar question has already been asked for the .NET platform but I am on Debian Linux.
I am trying to find a solution for burning a video DVD directly from a camera attached to a capture card. The card outputs an MPEG-2 stream and I want to write it directly to a DVD disc without creating any intermediate files.
The reason is so that when the recording is finished, the DVD can be very quickly finalized and ejected.
I have been looking at commandline tools like cdrecord and dvdauthor but I don't think they can do this. Any suggestions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像数据 DVD 或视频 DVD 一样?
视频 DVD 可能需要一些工作,但是数据 DVD 可以通过将 mkisofs 的输出通过管道传输到 Growthisofs 来轻松完成。
man Growisofs man mkisofs
编辑:
mkisofs -r /媒体/摄像头/ | grisofs -Z /dev/dvd
As in a data-dvd or videodvd?
video dvd might need some work, data dvd however can easily be done by piping the output of mkisofs to growisofs.
man growisofs man mkisofs
edit:
mkisofs -r /media/cam/ | growisofs -Z /dev/dvd