diff options
author | Jesús <heckyel@hyperbola.info> | 2021-08-29 18:48:01 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-08-29 18:48:01 -0500 |
commit | e4af99fd178c39b584001fa1b7d6d62d88bc7a60 (patch) | |
tree | f1f746c0087c9139d998e76084067744fd5ce3ca /youtube/templates/watch.html | |
parent | d56df02e7b1eba86baf511289208295b1f6c5a50 (diff) | |
download | yt-local-e4af99fd178c39b584001fa1b7d6d62d88bc7a60.tar.lz yt-local-e4af99fd178c39b584001fa1b7d6d62d88bc7a60.tar.xz yt-local-e4af99fd178c39b584001fa1b7d6d62d88bc7a60.zip |
Revert "Add support for more qualities, merging video+audio using MSE"
This reverts commit d56df02e7b1eba86baf511289208295b1f6c5a50.
Diffstat (limited to 'youtube/templates/watch.html')
-rw-r--r-- | youtube/templates/watch.html | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index 9d7a36c..2b19aeb 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -29,7 +29,7 @@ {% endif %} </span> </div> - {% elif (uni_sources.__len__() == 0 or live) and hls_formats.__len__() != 0 %} + {% elif (video_sources.__len__() == 0 or live) and hls_formats.__len__() != 0 %} <div class="live-url-choices"> <span>Copy a url into your video player:</span> <ol> @@ -41,9 +41,9 @@ {% else %} <figure class="sc-video"> <video id="js-video-player" playsinline controls> - {% if uni_sources %} - <source src="{{ uni_sources[uni_idx]['url'] }}" type="{{ uni_sources[uni_idx]['type'] }}" data-res="{{ uni_sources[uni_idx]['quality'] }}"> - {% endif %} + {% for video_source in video_sources %} + <source src="{{ video_source['src'] }}" type="{{ video_source['type'] }}" data-res="{{ video_source['quality'] }}"> + {% endfor %} {% for source in subtitle_sources %} {% if source['on'] %} @@ -55,10 +55,6 @@ </video> </figure> - {% if pair_sources and (not uni_sources or pair_sources[pair_idx][0]['quality'] != uni_sources[uni_idx]['quality']) %} - <script src="/youtube.com/static/js/av-merge.js"></script> - {% endif %} - {% if time_start != 0 %} <script> document.getElementById('js-video-player').currentTime = {{ time_start|tojson }}; |