"Who Talked About Us?" is an influencer-filtering app where a user can:
- Create an index (a library of videos)
- Upload YouTube videos in bulk by (public) playlist ID, channel ID, or JSON file
- Filter the videos and channels that mention a provided keyword (e.g., applying MAC gold highlighter)
- View specific timelines or references of videos mentioning the keyword
This application utilizes Twelve Labs API for the rich, contextual video search. Twelve Labs is an AI-powered video understanding platform that extracts various types of information from videos, such as movement and actions, objects and people, sound, text on screen, and speech.
📌 Check out the Demo! (Please note: This is a simplified version of the app)
After years in beauty influencer marketing (now turned software engineer 😉), one thing is clear: the best partnerships come from creators who genuinely love your brand. But finding them is tough—especially when your brand isn't mentioned in video titles or descriptions. I’ve struggled with this myself when a YouTuber featured a product but never named it explicitly.
That’s where Who Talked About Us, powered by Twelve Labs API, changes the game. It searches inside video content—detecting visuals, speech, and on-screen text—so you can find exact moments like “applying MAC gold highlighter.”
Take this example: the search reveals that Jean Watts, Risabae, Glamzilla, and Smitha Deepak did mention the product, while 18 others didn’t. With this context, you can confidently prioritize outreach to the right creators for more meaningful collaborations.
-
Please create a new index or enter the index ID of a video you uploaded through this app. (❗️Only videos indexed via this app are supported)
-
Once you are inside an index, Begin by uploading videos in bulk to the app using either YouTube playlist ID, channel ID, or JSON file.
-
A YouTube playlist and channel should be public
-
The format of a JSON file should follow below structure
[ { "url": "<VIDEO URL>" }, { "url": "<VIDEO URL>" } ... ]
-
-
Once the videos are uploaded, you can conduct a search using any keyword. Here are some suggestions:
- Enter your brand name or product name and discover who's already talking about you in their videos
- Enter your competitors' brand names to see what types of influencers they're attracting
- You can also search for very specific or contextual keywords such as "applying MAC gold highlighter" or "holding Gentle Monster sunglasses"!
-
The search results will be shown grouped by each channel (influencer) and video, displaying moments in videos where your keyword is mentioned or featured.
-
Based on these results, you can prioritize influencers and begin your outreach efforts, forging partnerships that can expand your brand reach and influence. Remember, success in influencer marketing is all about forming authentic partnerships!
Visit Twelve Labs Playground to generate your API Key. Once you sign up, you'll receive complimentary credits allowing you to index up to 10 hours of video content!
-
Clone the current repo
git clone git@github.com:mrnkim/Who-Talked-About-Us.git
-
Create
.envfile in the root directory and update the values for each key.env REACT_APP_API_KEY=<YOUR API KEY> REACT_APP_PORT_NUMBER=<YOUR PORT NUMBER> // Optional (set to 4000 by default) -
Install dependencies
npm install
-
Start the server
node server.js
-
Start the client (in a separate terminal)
npm start

