我正在尝试为电视网站编写一个新的youtube-dl提取器。网站提供了我可以使用的json-ld支持。但是内容的url不是绝对路径,相对路径或根相对路径。我尝试将其与网站域一起使用,但无法正常工作。感谢您对如何使用此网址的帮助。
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VideoObject",
"name": "6.Bölüm",
"description": "6.Bölüm",
"thumbnailUrl":"//s.kanald.com.tr/ps/kanald/70/0x0/5465f0d3cf45af1064b73084",
"uploadDate":"2011-10-13T01:54:48.2600000+03:00",
"duration":"PT18M32S",
"contentUrl":"S1/HLS_VOD/d548_237/index.m3u8",
"embedUrl":"https://www.kanald.com.tr/embed/5465f0d3cf45af1064b73086",
"publisher": {
"@type":"Organization",
"name":"Kanal D",
"logo": {
"@type": "ImageObject",
"url": "https://js.kanald.com.tr/assets/dist/img/logo.v3.png",
"width": 64,
"height": 70
}
}
}
</script>
这是该网站的json-ld代码段。它取自this address。 “ contentUrl”值是我不知道的部分。