PowerShell 技能连载 - 从德国媒体数据库下载视频

在德国,有一些公开的媒体数据库,里面有公共站点发布的电视内容。只需要用一小段 PowerShell 代码就可以解析 JSON 数据,在一个列表中显示电视节目,并使你能够选择某项来下载。

请注意包含下载链接的 JSON 文件非常大,所以需要过一段时间才能显示出视频列表。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#requires -Version 3.0

# here is the list of download URLs - get it and
# convert the JSON format
$url = 'http://www.mediathekdirekt.de/good.json'
$web = Invoke-WebRequest -Uri $url -UseBasicParsing
$videos = $web.Content | ConvertFrom-Json

# get all videos, create a nice title to display,
# and attach the original data to each entry
$videos |
ForEach-Object {
$title = '{0} - {1}' -f $_[2], $_[5]
$title | Add-Member -MemberType NoteProperty -Name Data -Value $_ -PassThru
} |
Sort-Object |
Out-GridView -Title 'Video' -OutputMode Multiple |
ForEach-Object {
# get the actual download info from the selected videos
# and do the download
$url = $_.Data[6]
$filename = Split-Path -Path $url -Leaf
# videos are saved into your TEMP folder unless you
# specify a different folder below
$filepath = Join-Path -Path $env:temp -ChildPath $filename
Invoke-WebRequest -Uri $url -OutFile $filepath -UseBasicParsing
Invoke-Item -Path $filepath
}

PowerShell 技能连载 - 从德国媒体数据库下载视频

http://blog.vichamp.com/2017/05/05/downloading-videos-from-german-media-databases/

作者

吴波

发布于

2017-05-05

更新于

2022-07-06

许可协议

评论