Mu 的目标是创建一个函数,给定一个 url 和一个文件路径,它将下载或缓冲 25 MB 的视频文件(在本例中来自 TiVo),然后在播放器中启动视频并继续下载视频的其余部分随着视频的播放。
我发现这里的代码很有帮助,这似乎是一个好的开始。这是我的第一个 Python 项目,所以这是一个学习过程。这是我到目前为止的代码:
import os
import sys
import logging
import requests as REQ
from requests.auth import HTTPDigestAuth;
import datetime as DT
try:
import cElementTree as ET
except ImportError:
try:
import xml.etree.cElementTree as ET
except ImportError:
exit_err("Failed to import cElementTree from any known place");
# Functions
def fetchSelection(url, fp):
print('Requesting ' + url + '...');
r = REQ.get(url, auth=HTTPDigestAuth('tivo', mak), verify=False, stream=True);
print('Fetching your selection...');
if r.status_code == REQ.codes.ok:
print('HTTP Request sent, awaiting response... 200 OK');
print('Buffering...');
else:
print('HTTP Request sent, awaiting response... ' + str(r.status_code));
print(r.raise_for_status());
return;
video_file_size_start = 0;
video_file_size_end = 1048576 * cacheSize; # end in CacheSize in MB
block_size = 1024;
with open(fp, 'wb') as fd:
for chunk in r.iter_content(block_size):
video_file_size_start += len(chunk);
if video_file_size_start > video_file_size_end:
break;
fd.write(chunk);
print(str(video_file_size_start/1024/1024) + ' MB / ' + str(video_file_size_end/1024/1024) + ' MB');
fd.close();
return;
这是以后使用此代码的地方:
filePath = downloadPath + details[6] + '.tivo';
fetchSelection(nUrl + '&Format=' + videoFormat, filePath);
print('Launching player...');
playerCommand = 'tivodecode -m ' + mak + ' ' + filePath + ' | ';
playerCommand += 'mplayer -vf pp=lb - cache 32768 -';
os.system(playerCommand);
nType = 0;
当我运行我的脚本时,我得到以下输出:
Requesting http://192.168.1.102:80/download/Adventure%20Time.TiVo?Container=%2FNowPlaying&id=653115&Format=video/x-tivo-mpeg...
Fetching your selection...
HTTP Request sent, awaiting response... 503
Traceback (most recent call last):
File "test_read_nowPlaying2.py", line 186, in <module>
fetchSelection(details[1] + '&Format=' + videoFormat, filePath);
File "test_read_nowPlaying2.py", line 128, in fetchSelection
print(r.raise_for_status());
File "/usr/local/lib/python2.7/dist-packages/requests/models.py", line 765, in raise_for_status
raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 503 Server Error: Server Busy
编辑:我弄清楚为什么我得到 503 响应,我没有调用正确的文件。我不得不请求video/x-tivo-mpeg-ts
.
这是一项正在进行的工作,我不确定如何进行。我也不知道如何在播放器播放时继续下载。