diff options
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | src/plugins/Peertube.cpp | 12 |
2 files changed, 14 insertions, 1 deletions
@@ -196,4 +196,5 @@ Add ctrl+r menus for peertube. Add audio-only mode for peertube (without also downloading video). Add option to play peertube video directly from url, along with timestamp. Should also work for playlists. Peertube urls should play directly in quickmedia. -Test peertube with live streams.
\ No newline at end of file +Test peertube with live streams. +Peertube hls streams can be really slow to start up (especially for videos.autizmo.xyz). This is an issue in ffmpeg. Maybe use youtube proxy downloader for this? those videos are fragmented.
\ No newline at end of file diff --git a/src/plugins/Peertube.cpp b/src/plugins/Peertube.cpp index 2b2d654..df715c1 100644 --- a/src/plugins/Peertube.cpp +++ b/src/plugins/Peertube.cpp @@ -415,7 +415,19 @@ namespace QuickMedia { for(const Json::Value &streaming_playlist_json : streaming_playlists_json) { if(!streaming_playlist_json.isObject()) continue; +#if 0 files_get_sources(streaming_playlist_json["files"], video_sources); +#else + const Json::Value &playlist_url_json = streaming_playlist_json["playlistUrl"]; + if(!playlist_url_json.isString()) + continue; + + PeertubeVideoPage::VideoSource video_source; + video_source.url = playlist_url_json.asString(); + video_source.resolution = 0; + video_sources.push_back(std::move(video_source)); + break; +#endif } if(video_sources.empty()) |