toomy wrote:
我的顯示安裝pyth...(恕刪)
DSM 5.0 DOWNLOAD STATION youtube download module 需要用到 python, 但 DSM 4.x 舊版的不需要, 用 DSM 4.x 的 user 必須等原廠更新此下載模組程式後, 下載功能才會正常. 不然就升級到 dsm 5.0 囉.
doguluskaien wrote:
用 qnap happyget就都可以用,好像軟體不再是s牌強項。可以支援happyget嗎...(恕刪)
雨田水人 wrote:
但下載回來的影片的解析度都是720P而不是1080P的...(恕刪)
雨田水人 wrote:
現在問題原因是找到了,但還是要等SYNOLOGY的工程師們修正後,再更新程式才真的有解....(恕刪)
YouTube does not generally offer videos >720p in a single file anymore.
What they do offer is DASH/HLS files. However, these only contain audio
or video, so you'll have to combine multiple files. That's somewhat
tricky (you'll need ffmpeg, and many other things can go wrong), and
that's the reason why it isn't the default in youtube-dl yet. However,
we're working on providing support.
In the meantime, you can use the -F flag to see the available formats
for a video:
$ youtube-dl -F https://www.youtube.com/watch?v=Qk52ypnGs68
[youtube] Setting language
[youtube] Qk52ypnGs68: Downloading webpage
[youtube] Qk52ypnGs68: Downloading video info webpage
[youtube] Qk52ypnGs68: Extracting video information
[info] Available formats for Qk52ypnGs68:
format code extension resolution note
171 webm audio only DASH webm audio , audio@ 48k (worst)
140 m4a audio only DASH audio , audio@128k
160 mp4 144p DASH video , video only
133 mp4 240p DASH video , video only
134 mp4 360p DASH video , video only
135 mp4 480p DASH video , video only
136 mp4 720p DASH video , video only
137 mp4 1080p DASH video , video only
17 3gp 176x144
36 3gp 320x240
5 flv 400x240
43 webm 640x360
18 mp4 640x360
22 mp4 1280x720 (best)
You can then use -f to select the desired quality. For example,
-f 138+140/264+140/137+140/best
will merge when the HD (or Ultra HD) formats are available, and use the
single video file otherwise. You may want to add that to your
configuration file ~/.config/youtube-dl.conf . As I wrote above, we're
working on making that the default.
Best,
Philipp