Skip to main content

Advanced Youtube Search


#1. channel – This Searches only YouTube channels
#2. this week | today | this month - Searches videos uploaded in the given time frame.
#3. partner – Searches for video uploaded by YouTube partners only.
#4. movie – Searches for full length movies available on YouTube.
#5. hd - Limits only HD quality videos.
#6. 3d – Limits only 3D videos.
#7. playlist – returns only videos in playlists.
#8. long – Returns videos that are 20 minutes or longer
To use the Above simple search commands all you have to do is type in your search followed by a comma and the command. Example:
Eminem, this month
Microsoft, 3d

Comments

Popular posts from this blog

ASCII to Decimal conversion

#include "msp430.h"                     ; #define controlled include file         NAME    main                    ; module name         PUBLIC  main                    ; make the main label vissible                                         ; outside this module         ORG     0FFFEh         DC16    init                    ; set reset vector to 'init' label         RSEG    CSTACK                  ; pre-declaration of segment         RSEG    CODE      ...

Event Sourcing with CQRS.

  The way event sourcing works with CQRS is to have  part of the application that models updates as writes to an event log or Kafka topic . This is paired with an event handler that subscribes to the Kafka topic, transforms the event (as required) and writes the materialized view to a read store.