GeethLe makes sharing music easy! Search for any song from anywhere with geethle.tech/<your+fav+song> and instantly get a permalink to the song along with a thumbnail with metadata. It’ll redirect you to your favorite music provider, saving time when sharing tracks.
Sooo, say you're talking to someone over WhatsApp & want to mention about a song. And, you're too lazy to go find the link. :D Don't worry, I have your back!
https://geethle.tech/<query>
GeethLe finds the track, generates a custom thumbnail with metadata + it redirects to your favorite provider once you click on the link. 🙂
https://geethle.tech/<query>https://geethle.tech/sp/<query>https://geethle.tech/spotify/<query>
https://geethle.tech/yt/<query>https://geethle.tech/youtube/<query>
https://geethle.tech/ytm/<query>https://geethle.tech/youtubemusic/<query>
https://geethle.tech/yt_id/<youtube-id>https://geethle.tech/sp_id/<spotify-id>
┌──────────────────────────────────────────────┐
│ geethle.tech │
└──────────────────┬───────────────────────────┘
│
┌───────────────┼───────────────┐
▼ ▼ ▼
/<query> /yt_id/<id> /sp_id/<id>
/sp/<query>
/yt/<query>
/ytm/<query>
│ │ │
▼ ▼ ▼
┌───────────────────────────────────────────────┐
│ app.py │
│ (Flask Routes) │
└───────────────────┬───────────────────────────┘
│
▼
┌───────────────────────────────────────────────┐
│ geeth_le.py │
│ (Core Business Logic) │
│ │
│ search_music() ──► Spotify Search API │
│ generate_from_youtube() ──► Odesli API │
│ generate_from_spotify() │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────┐ │
│ │ generate() │ │
│ │ Download album art │ │
│ │ Overlay title + artist + album │ │
│ │ (Pillow + Geist font) │ │
│ └────────────┬────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────┐ │
│ │ upload_frame() │ │
│ │ Upload to Firebase Storage │ │
│ │ Return signed URL (15-day TTL) │ │
│ └─────────────────────────────────┘ │
└───────────────────┬───────────────────────────┘
│
▼
┌───────────────────────────────────────────────┐
│ index.html (Template) │
│ │
│ - OG / Twitter Card meta tags │
│ (title, description, thumbnail URL) │
│ - JS redirect to target platform │
└───────────────────┬───────────────────────────┘
│
┌───────────┼───────────┐
▼ ▼ ▼
Spotify YouTube YouTube Music
External APIs:
┌──────────────┐ ┌──────────────┐ ┌──────────────────────┐
│ Spotify API │ │ Odesli API │ │ Firebase Storage │
│ │ │ (song.link) │ │ │
│ - Search │ │ │ │ - Thumbnail hosting │
│ - Metadata │ │ - YT → SP │ │ - Signed URLs │
│ - Album art │ │ - SP → YT │ │ │
│ │ │ - SP → YTM │ │ │
└──────────────┘ └──────────────┘ └──────────────────────┘
- Uses the Spotify API to fetch music metadata.
- Uses Odesli API to get the Spotify ID from YouTube ID.
- Uses Geist font for the thumbnails.
- @AkashChand6n with whose convo lead me to this idea ;__;
- @AbhiramVAnand for helping me with stuff
- @anima-regem, @AbhiramKunnath & @SherhinShoukath for suggestions & feedback
