Love Is Blind -joybear Pictures- -2020 Web-dl- [LATEST]
Most streaming versions of Love is Blind are encoded at 2-3 Mbps. The JoyBear Pictures WEB-DL, however, typically features a bitrate ranging from 8,000 to 12,000 kbps in a 1080p container.
Because this is a high-bitrate WEB-DL, standard media players may struggle. For best results:
import re
import requests
def parse_filename(filename):
pattern = r'^(.?)\s-.?-\s(\d4)\s*WEB-DL'
match = re.search(pattern, filename)
if match:
title = match.group(1).strip()
year = match.group(2)
return title, year
return None, None Love is Blind -JoyBear Pictures- -2020 WEB-DL-
def fetch_tmdb_id(title, year, api_key):
url = f"https://api.themoviedb.org/3/search/movie"
params = 'api_key': api_key, 'query': title, 'year': year
resp = requests.get(url, params=params).json()
if resp['results']:
movie = resp['results'][0]
return movie['id'], movie['title']
return None, None
Queries TMDb API for the correct movie (by title + year). Most streaming versions of Love is Blind are
Renames file to standard format:
Love is Blind (2020) tmdb-123456.WEB-DL.mp4
Creates a sidecar NFO (for Kodi) or updates Plex via API. Queries TMDb API for the correct movie (by title + year)
Optionally moves to:
Movies/Love is Blind (2020)/Love is Blind (2020) WEB-DL.mp4