Help Contact

In order to serve you better, this website makes use of Cookies. By clicking "I agree" or by continuing to use this website, you agree to the placing of these cookies.

Awarapan -2007- 720p 10bit Amzn Webrip X265 Hev... May 2026

return MediaInfo( title=m.group('title').strip(' -._'), year=int(m.group('year')) if m.group('year') else None, resolution=m.group('resolution'), bit_depth=m.group('bitdepth'), source=m.group('source'), codec=m.group('codec') ) The parser is deliberately tolerant – missing fields simply become None . | Platform | API / Library | How to query | |----------|---------------|--------------| | Android | MediaCodecInfo | isFeatureSupported(MediaCodecInfo.CodecFeature.HEVC10) | | iOS / tvOS | AVFoundation | AVAssetTrack.hasPreferredTransform + AVAssetTrack.isHEVC10Supported | | Windows (UWP) | MediaEncodingProfile | IsSupported for VideoEncodingProperties with HEVC and BitDepth == 10 | | Web (HTML5) | MediaSource.isTypeSupported | mediaSource.isTypeSupported('video/mp4; codecs="hev1.2.4.L123.90"') |

def parse_media_filename(name: str) -> MediaInfo: m = PATTERN.search(name) if not m: raise ValueError(f"Unable to parse: name") Awarapan -2007- 720p 10bit AMZN WEBRip x265 HEV...

Press Create Compatible Version . The app will generate an `*_compatible return MediaInfo( title=m

Your TV probably cannot decode 10‑bit HEVC. Tap Play – the app will automatically transcode the stream to an 8‑bit H.264 version that your TV can handle, with no extra steps required. Tap Play – the app will automatically transcode

@dataclass class MediaInfo: title: str year: int | None resolution: str | None bit_depth: str | None source: str | None codec: str | None

PATTERN = re.compile( r"""(?P<title>.+?) # everything up to a delimiter [\s\-\._]* # optional delimiter chars (?P<year>\d4)? # optional year [\s\-\._]* # optional delimiter chars (?P<resolution>\d3,4p)? # optional resolution [\s\-\._]* # optional delimiter chars (?P<bitdepth>\d1,2bit)? # optional bit‑depth [\s\-\._]* # optional delimiter chars (?P<source>WEBRip|WEB-DL|BluRay|AMZN|Netflix)? # optional source [\s\-\._]* # optional delimiter chars (?P<codec>x26[45]|H\.264|AVC)? # optional codec .* # ignore the rest """, re.IGNORECASE | re.VERBOSE, )