From ee0a118a6c7ed0e371fed18dcdace1f18a3cabf6 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Tue, 17 Dec 2019 21:52:31 -0800 Subject: Extraction: Fix thumbnail and remove badges on related videos --- youtube/templates/common_elements.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'youtube/templates/common_elements.html') diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 67655b3..1a417ae 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -14,7 +14,7 @@ {%- endif -%} {% endmacro %} -{% macro item(info, description=false, horizontal=true, include_author=true) %} +{% macro item(info, description=false, horizontal=true, include_author=true, include_badges=true) %}
{% if info['type'] == 'video' %} -- cgit v1.2.3 From 98777ee82561ae205f156a7f8497728aecfa080c Mon Sep 17 00:00:00 2001 From: James Taylor Date: Wed, 18 Dec 2019 19:39:16 -0800 Subject: Extraction: Rewrite item_extraction for better error handling and readability, rename extracted names for more consistency --- youtube/templates/common_elements.html | 78 ++++++++++++++++++---------------- 1 file changed, 41 insertions(+), 37 deletions(-) (limited to 'youtube/templates/common_elements.html') diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 1a417ae..4c776b6 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -9,55 +9,59 @@ {{ text_run["text"] }} {%- endif -%} {%- endfor -%} - {%- else -%} + {%- elif runs -%} {{ runs }} {%- endif -%} {% endmacro %} {% macro item(info, description=false, horizontal=true, include_author=true, include_badges=true) %}
-
- - - {% if info['type'] != 'channel' %} -
- {{ info['size'] if info['type'] == 'playlist' else info['duration'] }} -
- {% endif %} -
+ {% if info['error'] %} + {{ info['error'] }} + {% else %} +
+ + + {% if info['type'] != 'channel' %} +
+ {{ (info['video_count']|string + ' videos') if info['type'] == 'playlist' else info['duration'] }} +
+ {% endif %} +
- + -
    - {% if info['type'] == 'channel' %} -
  • {{ info['subscriber_count'] }} subscribers
  • -
  • {{ info['size'] }} videos
  • - {% else %} - {% if include_author %} - {% if 'author_url' is in(info) %} -
  • By {{ info['author'] }}
  • - {% else %} -
  • {{ info['author'] }}
  • +
      + {% if info['type'] == 'channel' %} +
    • {{ info['approx_subscriber_count'] }} subscribers
    • +
    • {{ info['video_count'] }} videos
    • + {% else %} + {% if include_author %} + {% if info.get('author_url') %} +
    • By {{ info['author'] }}
    • + {% else %} +
    • {{ info['author'] }}
    • + {% endif %} + {% endif %} + {% if info.get('approx_view_count') %} +
    • {{ info['approx_view_count'] }} views
    • + {% endif %} + {% if info.get('time_published') %} +
    • {% endif %} {% endif %} - {% if 'views' is in(info) %} -
    • {{ info['views'] }}
    • - {% endif %} - {% if 'published' is in(info) %} -
    • - {% endif %} - {% endif %} -
    +
- {% if description %} - {{ text_runs(info.get('description', '')) }} - {% endif %} - {% if include_badges %} - {{ info['badges']|join(' | ') }} + {% if description %} + {{ text_runs(info.get('description', '')) }} + {% endif %} + {% if include_badges %} + {{ info['badges']|join(' | ') }} + {% endif %} +
+ {% if info['type'] == 'video' %} + {% endif %} -
- {% if info['type'] == 'video' %} - {% endif %}
-- cgit v1.2.3 From 02848a1a3213bb4ad872865768a7b97f663a24ed Mon Sep 17 00:00:00 2001 From: James Taylor Date: Thu, 19 Dec 2019 15:46:16 -0800 Subject: Extraction: Adjust related videos box to fit new time_published information well time_published will be put to the right of the view_count in related videos Author will now always be above the other stats, since it doesn't make a difference in the big search result boxes since the description snippet is always very short (However, it's important the author isn't inline with the other stats in related video boxes since those are so narrow and the author name can be very long) --- youtube/templates/common_elements.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'youtube/templates/common_elements.html') diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 4c776b6..7914c08 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -31,18 +31,18 @@ -
    + {% if include_author %} + {% if info.get('author_url') %} +
    By {{ info['author'] }}
    + {% else %} +
    {{ info['author'] }}
    + {% endif %} + {% endif %} +
      {% if info['type'] == 'channel' %}
    • {{ info['approx_subscriber_count'] }} subscribers
    • {{ info['video_count'] }} videos
    • {% else %} - {% if include_author %} - {% if info.get('author_url') %} -
    • By {{ info['author'] }}
    • - {% else %} -
    • {{ info['author'] }}
    • - {% endif %} - {% endif %} {% if info.get('approx_view_count') %}
    • {{ info['approx_view_count'] }} views
    • {% endif %} -- cgit v1.2.3