All Projects → RameshAditya → Scoper

RameshAditya / Scoper

Licence: other
Fuzzy and semantic search for captioned YouTube videos.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Scoper

Youtube Scrape
Scrape YouTube searches (API)
Stars: ✭ 122 (-45.78%)
Mutual labels:  youtube-api, search, youtube
Flexsearch
Next-Generation full text search library for Browser and Node.js
Stars: ✭ 8,108 (+3503.56%)
Mutual labels:  search, search-algorithm, fuzzy-search
Elassandra
Elassandra = Elasticsearch + Apache Cassandra
Stars: ✭ 1,610 (+615.56%)
Mutual labels:  search, fuzzy-search
List.js
The perfect library for adding search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on existing HTML.
Stars: ✭ 10,650 (+4633.33%)
Mutual labels:  search, fuzzy-search
Similar Text Finder
🐝 PHP Similar Text Finder aka Fuzzy search. `Did you mean "banana"?`
Stars: ✭ 126 (-44%)
Mutual labels:  search, fuzzy-search
Jquery Youtube Channels Playlist
jQuery plugin youtube playlist
Stars: ✭ 90 (-60%)
Mutual labels:  youtube-api, youtube
Ngx Youtube Player
YouTube player app built with Angular 7
Stars: ✭ 92 (-59.11%)
Mutual labels:  youtube-api, youtube
Youtube desktop
The desktop Youtube Application built using Electron. (In development)
Stars: ✭ 123 (-45.33%)
Mutual labels:  youtube-api, youtube
Discord Player
🎧 Complete framework to simplify the implementation of music commands using discords.js v12
Stars: ✭ 161 (-28.44%)
Mutual labels:  search, youtube
Algorithm
The repository algorithms implemented on the Go
Stars: ✭ 163 (-27.56%)
Mutual labels:  search, search-algorithm
Youtubeshop
Youtube autolike and autosubs script
Stars: ✭ 177 (-21.33%)
Mutual labels:  youtube-api, youtube
Docker Multistreamer
Dockerized multistreamer
Stars: ✭ 90 (-60%)
Mutual labels:  youtube-api, youtube
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-66.22%)
Mutual labels:  youtube-api, youtube
React Native Thumbnail Video
Easily show thumbnails for videos on react-native.
Stars: ✭ 104 (-53.78%)
Mutual labels:  youtube-api, youtube
Distube
A Discord.js v12 module to simplify your music commands and play songs with audio filters on Discord without any API key. Support YouTube, SoundCloud, Bandcamp, Facebook, and 700+ more sites
Stars: ✭ 73 (-67.56%)
Mutual labels:  search, youtube
Automator
Various Automator and AppleScript workflow and scripts for simplifying life
Stars: ✭ 68 (-69.78%)
Mutual labels:  search, youtube
Tntsearch
A fully featured full text search engine written in PHP
Stars: ✭ 2,693 (+1096.89%)
Mutual labels:  search, fuzzy-search
Rey
RE-imagined Youtube music player for web (& desktop)
Stars: ✭ 59 (-73.78%)
Mutual labels:  youtube-api, youtube
Spotivy
🎼 Download music videos from Spotify playlists
Stars: ✭ 64 (-71.56%)
Mutual labels:  youtube-api, youtube
Auto Youtube Subscription Playlist 2
Script automatically adds videos to playlists from Youtube channels and/or subscriptions (Youtube Collections alternative).
Stars: ✭ 136 (-39.56%)
Mutual labels:  youtube-api, youtube

https://raw.githubusercontent.com/RameshAditya/scoper/master/github-resources/logo.jpg?token=AECQW6LFNMRDVEGLBMMVKFK5OH7AI

Fuzzy and Semantic Caption-Based Searching for YouTube Videos

https://github.com/RameshAditya/scoper/blob/master/github-resources/demo_fuzzy.gif


Contents


What Scoper is

Scoper is a python script that takes a youtube URL and a user query string as inputs, and returns the timestamps in the video where the content of the caption closely matches the user's query string.

For example, in the video - https://www.youtube.com/watch?v=bfHEnw6Rm-4 - which is Apple's October 2018 event, if you were to query Photoshop for ipad, you'd see the following output -

photoshop on ipad.                   1h 6m 29s
for.                                 54m 16s
ipad.                                50m 37s
photoshop.                           1h 14m 8s
this is a historic center for        3m 48s
would love to play it for you        4m 50s
pro users but designed for all       7m 52s
exactly what you're looking for,     8m 0s
go and use for everything they       8m 52s
product line for years to come,      9m 29s


How Scoper works

Scoper works in two ways.

  • Extract captions and timestamps from the YouTube URL
  • Preprocess the user query and train a Word2Vec model
  • Query over the captions and find the best match. This is done in two ways, as decided by the user -
    • Fuzzy searching

      • Scoper enables you to query over the video's captions by using fuzzy matching algorithms.
      • This means it searches for the most relevant captions in terms of spelling and finds the nearest match.
      • Done by using variants of Levenshtein's distance algorithms.
      • Supports multiple languages.
    • Semantic searching

      • Scoper also enables you to query over the video's captions using semantic sentence similarity algorithms.
      • The performance of semantic searching is highly dependent on the dataset on which the Word2Vec model used is trained on.
      • By default, the Brown's corpus is used to train the Word2Vec model, and additionally a modified word-mover's distance algorithm is used to evaluate sentence-sentence similarity.
      • For non-english language querying, the user will have to provide their own dataset.
  • Map back the chosen captions to the original timestamps and return them

How to use Scoper

Shell usage

>>> obj = Scoper()
>>> obj.main('https://www.youtube.com/watch?v=wFTmQ27S7OQ', mode = 'FUZZY', limit = 10)
Enter query string: Apple Watch

[('Apple Watch.', 1796.994), ('the iPad to the Apple watch, and', 318.617), ('Apple Watch has grown in such a', 480.379), ... ]

Web GUI usage

python app.py

CLI usage

> python -W ignore scoper.py --video https://www.youtube.com/watch?v=bfHEnw6Rm-4 --mode FUZZY --limit 10 --language en
Enter query string: prjct airo

air.                                 9m 0s
project aero, our new augmented      1h 6m 7s
well, with project aero, now you     1h 9m 54s
we also showed you project aero,     1h 11m 28s
pro.                                 49m 43s
ipad pro and it protects both        57m 15s
tap.                                 59m 52s
so now with photoshop, project       1h 10m 41s
products, every ipad pro is made     1h 15m 41s
previous air.                        18m 13s


> python -W ignore scoper.py --video https://www.youtube.com/watch?v=bfHEnw6Rm-4 --mode SEMANTIC --limit 10 --language en
Enter query string: i can't wait to introduce you

i am thrilled to be able to tell     46m 43s
you're going to be amazed by         1h 19m 18s
powered by the all-new a12x          51m 26s
but since this is an x chip, it      51m 51s
in fact, this new a12x has more      51m 55s
i can't wait for you to get your     25m 32s
just like in the x-r, we call it     47m 15s
the a12x bionic has an all-new       53m 1s
a few days ago and they're live      40m 31s
and all of the new features of       21m 47s


Future Plans

  • Improve the sentence similarity algorithm
  • Include out-of-the-box support for use of pretrained word embeddings
  • Include support for general audio searching using SpeechRecognition APIs to generate a corpus from non-captioned audios

Support Me

If you liked this, leave a star! ⭐️

If you liked this and also liked my other work, be sure to follow me for more! 🙂

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].