| Ref# | Subject |
|---|---|
| 1 | Introduction |
| 2 | Analog Color Television Standards |
| 3 | Video Fields |
| 4 | Field and Frame rates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias subs=subs | |
| function subs() { | |
| movie="${1}" | |
| filename="${1%.*}" | |
| mappings=`ffprobe -loglevel error -select_streams s -show_entries stream=index:stream_tags=language -of csv=p=0 "${movie}"` | |
| OLDIFS=$IFS | |
| IFS=, | |
| ( while read idx lang | |
| do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| red = $FF7C7C | |
| green = $B2FF7C | |
| blue = $8F97FF | |
| yellow = $FFE07C | |
| orange = $FFB97C | |
| magenta = $FF77FF | |
| violet = $C787FF | |
| cyan = $7DF9FF | |
| white = $FFFFFF | |
| azure = $86C8FF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Algeria", | |
| "code": "DZ", | |
| "storefrontId": 143563 | |
| }, | |
| { | |
| "name": "Angola", | |
| "code": "AO", | |
| "storefrontId": 143564 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function UpscaleCheck(clip c, string "resolution") { | |
| resolution = default(resolution, "720") | |
| eval("""Interleave(c.myffinfo("source", color_lawngreen), c.AutoResize(""" + Chr(34) + resolution + Chr(34) + """).z_Spline36Resize(c.width, c.height).myffinfo("source -> """ + resolution +""" -> source", color_cyan))""") | |
| } |
| OS | Software | Type | Supported Mediums |
|---|---|---|---|
| ![Windows][win] ![Linux][nix] ![Mac][mac] | MakeMKV | GUI, CLI | ![Blu-ray][br] ![DVD][dvd] *1 *4 |
| ![Windows][win] | AnyDVD HD | GUI | ![Blu-ray][br] ![DVD][dvd] *5 |
| ![Windows][win] ![Linux][nix] *3 | DVDFab *2 | GUI | ![Blu-ray][br] ![DVD][dvd] *5 |
| ![Windows][win] ![Linux][nix] *3 | DVD Decrypter | GUI, CLI*7 | ![DVD][dvd] |
| ![Linux][nix] | K3b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from tqdm import tqdm | |
| from tqdm.utils import CallbackIOWrapper | |
| file_path = os.path.abspath(__file__) | |
| upload_url = https://some-bucket.s3.amazonaws.com | |
| file_size = os.stat(file_path).st_size | |
| with open(file_path, "rb") as f: | |
| with tqdm(total=file_size, unit="B", unit_scale=True, unit_divisor=1024) as t: | |
| wrapped_file = CallbackIOWrapper(t.update, f, "read") |
I need to clarify when I refer to TDecimate I'm referring to both TDecimate and VDecimate (which is a port of it to VapourSynth)
Time and time again I see people using this function to decimate for inverse-telecine purposes but I implore you to continue reading this and use an alternative decimation method.
Simply put, it's far too inaccurate and it is ruining a lot of encodes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @font-face { | |
| font-family: 'Netflix Sans'; | |
| font-weight: 100; | |
| font-display: optional; | |
| src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff2) format('woff2'),url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff) format('woff') | |
| } | |
| @font-face { | |
| font-family: 'Netflix Sans'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import re | |
| import glob | |
| import subprocess | |
| # ==== # | |
| # Important: | |
| # For this script to work, you need to demux the MPS files FIRST | |
| # How? | |
| # Download the header.bin file (see top first comment below). |