1-哪个更适合用于流媒体视频? TCP或UDP套接字以及为什么?
2-实时流式传输,音频和视频分别来自服务器,那么如何确保我显示的视频和我在设备上播放的音频同步?
答案 0 :(得分:5)
我前段时间写了一个语音聊天应用程序而TCP已经不可能了,如果你正在寻找近乎实时的数据流,UDP多播真的是唯一的方法。通过UDP传输内容有两个主要问题:
答案 1 :(得分:1)
我会做UDP。但这取决于你想要什么。 UDP将丢弃数据包而不是等待(TCP)。权衡取决于你是想要一个稳定的,但有时是缓慢而昂贵的,还是一个有效的,但有时可能无法交付。当你想要如何实现它以及如何使用它时,你可以选择它。
答案 2 :(得分:0)
今天甚至youtube通过HTTP流...这里是一个nodejs应用程序,它将一个文件流式传输到浏览器客户端...作为一个起点,以及与音频很好地同步的直播视频
// usage
// do following on server side (your laptop running nodejs)
// node this_file.js
//
// then once above is running point your browser at
// http://localhost:8888
//
// of course your browser could be on your mobile or own custom app
var http = require('http'),
fs = require('fs'),
util = require('util');
var path = "/path/to/audio/or/video/file/local/to/server/cool.mp4"; // put any audio or video file here
var port = 8888;
var host = "localhost";
http.createServer(function (req, res) {
var stat = fs.statSync(path);
var total = stat.size;
if (req.headers.range) { // meaning client (browser) has moved the forward/back slider
// which has sent this request back to this server logic ... cool
var range = req.headers.range;
var parts = range.replace(/bytes=/, "").split("-");
var partialstart = parts[0];
var partialend = parts[1];
var start = parseInt(partialstart, 10);
var end = partialend ? parseInt(partialend, 10) : total-1;
var chunksize = (end-start)+1;
console.log('RANGE: ' + start + ' - ' + end + ' = ' + chunksize);
var file = fs.createReadStream(path, {start: start, end: end});
res.writeHead(206, { 'Content-Range': 'bytes ' + start + '-' + end + '/' + total, 'Accept-Ranges': 'bytes', 'Content-Length': chunksize, 'Content-Type': 'video/mp4' });
file.pipe(res);
} else {
console.log('ALL: ' + total);
res.writeHead(200, { 'Content-Length': total, 'Content-Type': 'video/mp4' });
fs.createReadStream(path).pipe(res);
}
}).listen(port, host);
console.log("Server running at http://" + host + ":" + port + "/");