是否可以在本地制作一个网络/应用程序服务器?
一点背景知识:我正在尝试创建一个 Google Chrome,它将在本地浏览器中播放视频。这意味着它应该能够在没有互联网连接的情况下玩。由于我只使用 HTML/Javascript,因此我只能播放 webm、mp4 和 ogg 文件。不过,我对播放其他格式感兴趣,例如 AVI、MPG 以及其他一些格式。我正在考虑以某种方式创建一个本地服务器,在那里我可以运行 ffmpeg 将视频编码为 webm/mp4。所以我的主要目标是让 ffmpeg 运行。这可能吗?
A little bit of background: I am trying to create a Google Chrome that will play videos in your browser locally. Meaning it should be able to play without an Internet connection. Since I'm only using HTML/Javascript, I can only play webm, mp4, and ogg files. However, I am interested in playing other formats, such as AVI, MPG, and maybe a few others. I was thinking of creating a local server somehow where I can run ffmpeg to encode the videos to webm/mp4. So my main objective is to get ffmpeg to run. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
不仅仅是使用 html5 和 javascript。如果您可以选择运行本地网络服务器,那么您可以运行任何您想要的可执行文件,包括 ffmpeg。您基本上将调用恰好在本地运行的服务器端进程(使用 php、java 或其他)。
Not just using html5 and javascript. If you have the option of running a local webserver than you can run any executable you want, including ffmpeg. You'll basically be calling a server side process (using php, java, or whatever) which happens to be running locally.