diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-10-18 23:28:57 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-10-18 23:52:44 +0530 |
commit | d5d1df8afdd532cc889f9d95be0740668a0776fe (patch) | |
tree | 86f30088a9c90d60ddd581618165b3446fa39f2e /yt_dlp/extractor/prankcast.py | |
parent | cd5df121f3577178cb73bafe886677da9452dc42 (diff) | |
download | hypervideo-pre-d5d1df8afdd532cc889f9d95be0740668a0776fe.tar.lz hypervideo-pre-d5d1df8afdd532cc889f9d95be0740668a0776fe.tar.xz hypervideo-pre-d5d1df8afdd532cc889f9d95be0740668a0776fe.zip |
[cleanup Misc
Closes #5162
Diffstat (limited to 'yt_dlp/extractor/prankcast.py')
-rw-r--r-- | yt_dlp/extractor/prankcast.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/yt_dlp/extractor/prankcast.py b/yt_dlp/extractor/prankcast.py index 7446caf3c..0eb5f98d1 100644 --- a/yt_dlp/extractor/prankcast.py +++ b/yt_dlp/extractor/prankcast.py @@ -21,6 +21,23 @@ class PrankCastIE(InfoExtractor): 'tags': ['prank call', 'prank'], 'upload_date': '20220825' } + }, { + 'url': 'https://prankcast.com/phonelosers/showreel/2048-NOT-COOL', + 'info_dict': { + 'id': '2048', + 'ext': 'mp3', + 'title': 'NOT COOL', + 'display_id': 'NOT-COOL', + 'timestamp': 1665028364, + 'uploader': 'phonelosers', + 'channel_id': 6, + 'duration': 4044, + 'cast': ['phonelosers'], + 'description': '', + 'categories': ['prank'], + 'tags': ['prank call', 'prank'], + 'upload_date': '20221006' + } }] def _real_extract(self, url): |