diff --git a/Cargo.lock b/Cargo.lock index 2c8cb45..c20e871 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,6 +16,14 @@ dependencies = [ "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "arrayvec" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "atty" version = "0.2.13" @@ -30,11 +38,36 @@ name = "autocfg" version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "backtrace" +version = "0.3.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "bitflags" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "cc" +version = "1.0.46" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "cfg-if" version = "0.1.10" @@ -65,6 +98,70 @@ dependencies = [ "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "crossbeam-deque" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-queue" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "either" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "failure" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "glob" version = "0.3.0" @@ -78,6 +175,14 @@ dependencies = [ "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "hermit-abi" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "human_format" version = "1.0.2" @@ -111,6 +216,19 @@ name = "memchr" version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "memoffset" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "num-integer" version = "0.1.41" @@ -128,6 +246,15 @@ dependencies = [ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "num_cpus" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "proc-macro-error" version = "0.2.6" @@ -154,6 +281,28 @@ dependencies = [ "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "rayon" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rayon-core" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "redox_syscall" version = "0.1.56" @@ -175,11 +324,42 @@ name = "regex-syntax" version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "rustc-demangle" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "ryu" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "scopeguard" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "serde" version = "1.0.102" @@ -249,9 +429,12 @@ dependencies = [ name = "superdeduper" version = "0.1.0" dependencies = [ + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "human_format 1.0.2 (git+https://github.com/wathiede/human-format-rs)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -269,6 +452,17 @@ dependencies = [ "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "synstructure" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "termcolor" version = "0.3.6" @@ -353,29 +547,51 @@ dependencies = [ [metadata] "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +"checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" +"checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea" +"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" +"checksum cc 1.0.46 (registry+https://github.com/rust-lang/crates.io-index)" = "0213d356d3c4ea2c18c40b037c3be23cd639825c18f25ee670ac7813beeef99c" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" +"checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71" +"checksum crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9" +"checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b" +"checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6" +"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" +"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" +"checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" +"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" "checksum human_format 1.0.2 (git+https://github.com/wathiede/human-format-rs)" = "" "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" +"checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" +"checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" +"checksum num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "155394f924cdddf08149da25bfb932d226b4a593ca7468b08191ff6335941af5" "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" +"checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123" +"checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" +"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" +"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" "checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" @@ -384,6 +600,7 @@ dependencies = [ "checksum structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4f66a4c0ddf7aee4677995697366de0749b0139057342eccbb609b12d0affc" "checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae" "checksum syn 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0e7bedb3320d0f3035594b0b723c8a28d7d336a3eda3881db79e61d676fb644c" +"checksum synstructure 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" "checksum termcolor 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "adc4587ead41bf016f11af03e55a624c06568b5a19db4e90fde573d805074f83" "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" diff --git a/Cargo.toml b/Cargo.toml index 333ceac..dff756f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,11 +7,14 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +failure = "0.1" glob = "0.3" +human_format = { git ="https://github.com/wathiede/human-format-rs" } +lazy_static = "1.4" +log = "0.4" +rayon = "1.2" +regex = "1" serde = { version = "1.0", features = ["derive"] } serde_json = "1" -human_format = { git ="https://github.com/wathiede/human-format-rs" } stderrlog = "0.4" -log = "0.4" -regex = "1" structopt = "0.3" diff --git a/src/lib.rs b/src/lib.rs index 48cb9ea..8c4f489 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,33 +1,126 @@ use std::collections::HashMap; use std::env; -use std::error::Error; +use std::ffi::OsStr; use std::fmt; +use std::fmt::Display; +use std::fmt::Formatter; use std::fs::File; use std::io::BufReader; +use std::io::BufWriter; use std::path::Path; use std::path::PathBuf; +use std::process::Command; +use std::str::FromStr; +use failure::bail; +use failure::Error; +use failure::ResultExt; use glob::glob; +use lazy_static::lazy_static; +use log::error; +use log::info; +use rayon::iter::ParallelBridge; +use rayon::prelude::ParallelIterator; +use serde::de; +use serde::de::Deserializer; use serde::Deserialize; +use serde::Serialize; +use serde_json::Value; -#[derive(Clone, Deserialize, Debug)] +#[derive(Clone, Deserialize, Debug, Serialize)] pub struct Resolution(usize, usize); -impl fmt::Display for Resolution { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { +impl Display for Resolution { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { let v = format!("{}x{}", self.0, self.1); f.pad(&v) } } -#[derive(Clone, Deserialize, Debug)] -pub struct Metadata { - pub size: usize, - pub dimension: Resolution, - pub duration_text: String, - pub duration: f32, +fn option_from_str<'de, T, D>(deserializer: D) -> Result, D::Error> +where + T: FromStr, + T::Err: Display, + D: Deserializer<'de>, +{ + let s = String::deserialize(deserializer)?; + T::from_str(&s).map(Some).map_err(de::Error::custom) } -#[derive(Deserialize, Debug)] +fn from_str<'de, T, D>(deserializer: D) -> Result +where + T: FromStr, + T::Err: Display, + D: Deserializer<'de>, +{ + let s = String::deserialize(deserializer)?; + T::from_str(&s).map_err(de::Error::custom) +} + +#[derive(Clone, Deserialize, Debug, Serialize)] +pub struct Format { + #[serde(default, deserialize_with = "option_from_str")] + bit_rate: Option, + #[serde(deserialize_with = "from_str")] + duration: f32, + filename: String, + format_name: String, + #[serde(deserialize_with = "from_str")] + size: usize, +} + +// TODO(wathiede): make strem an enum with the tag type stored in codec_type? +#[derive(Clone, Deserialize, Debug, Serialize)] +#[serde(tag = "codec_type")] +pub enum Stream { + #[serde(rename = "video")] + Video { + #[serde(default, deserialize_with = "option_from_str")] + bit_rate: Option, + codec_name: String, + codec_long_name: String, + coded_height: usize, + coded_width: usize, + display_aspect_ratio: String, + #[serde(default, deserialize_with = "from_str")] + duration: f32, + height: usize, + width: usize, + }, + #[serde(rename = "audio")] + Audio {}, + #[serde(rename = "subtitle")] + Subtitle {}, + #[serde(rename = "attachment")] + Attachment {}, + #[serde(rename = "data")] + Data {}, +} + +impl Stream { + pub fn dimension(&self) -> Option { + None + } +} + +#[derive(Clone, Deserialize, Debug, Serialize)] +pub struct Metadata { + format: Format, + streams: Vec, +} + +impl Metadata { + pub fn dimension(&self) -> Option { + None + } + pub fn duration(&self) -> f32 { + self.format.duration + } + pub fn size(&self) -> usize { + self.format.size + } +} + +#[derive(Deserialize, Debug, Serialize)] pub struct MetadataFile { #[serde(flatten)] pub metadata: HashMap, @@ -37,37 +130,132 @@ pub struct MovieLibrary { root: String, } +fn json_metadata_for_path>(path: P) -> Result { + let mut cmd = Command::new("ffprobe"); + // TODO(wathiede): maybe add "-select_streams v" + cmd.args(&[ + "-v", + "quiet", + "-print_format", + "json", + "-show_format", + "-show_error", + "-show_streams", + ]) + .arg(path); + info!(target: "json", "cmd {:?}", cmd); + let output = cmd.output()?; + if output.status.success() { + return Ok(String::from_utf8(output.stdout)?); + } + bail!( + "{:?} exit status {}:\nSTDOUT: {}\nSTDERR: {}", + cmd, + output.status, + String::from_utf8_lossy(&output.stdout), + String::from_utf8_lossy(&output.stderr) + ) +} + +lazy_static! { + static ref MOVIE_EXTS: Vec<&'static str> = vec!["avi", "m4v", "mkv", "mov", "mp4"]; +} + impl MovieLibrary { pub fn new>(root: S) -> MovieLibrary { MovieLibrary { root: root.into() } } - pub fn movies( - &self, - include_stale: bool, - ) -> Result<(HashMap), Box> { - let mut movies = HashMap::new(); - for md in glob(&format!("{}/*/metadata.json", self.root))? { - match md { - Ok(path) => { - let mdf = read_metadata_from_file(&path)?; - for (name, md) in mdf.metadata { - if include_stale { - movies.insert(name, md); - } else { - // Filter out files that don't exist - dbg!(&self.root, &name); - let mut p = PathBuf::from(&self.root); - p.push(&name); - dbg!(&p); - if p.is_file() { - movies.insert(name, md); - } - } + pub fn compact_metadata(&self) -> Result<(), Error> { + let mdf = read_metadata_from_file(Path::new(&self.root).join("metadata.json"))?; + info!("Read metadata, {} videos found", mdf.metadata.len()); + Ok(()) + } + + pub fn update_metadata(&self) -> Result<(), Error> { + let path = Path::new(&self.root).join("metadata.json"); + // Open the file in read-only mode with buffer. + let f = File::open(&path).context(format!("open {}", path.display()))?; + let r = BufReader::new(f); + + // Read the JSON contents of the file as an instance of `User`. + let old_metadata: HashMap = serde_json::from_reader(r) + .context(format!("serde_json::from_reader {}", path.display()))?; + + info!("Read metadata, {} videos found", old_metadata.len()); + + let mut metadata: HashMap<_, _> = self + .iter_video_files() + .filter(|r| r.is_ok()) + .filter(|r| { + let path = r + .as_ref() + .unwrap() + .strip_prefix(&self.root) + .unwrap() + .to_str() + .unwrap() + .to_owned(); + !old_metadata.contains_key(&path) + }) + .par_bridge() + .filter_map(move |path| { + env::set_current_dir(&self.root).unwrap(); + let path: PathBuf = path.unwrap().into(); + let path = path.strip_prefix(&self.root).unwrap(); + match json_metadata_for_path(&path) { + Ok(json) => { + info!("{}", path.display()); + Some((path.to_string_lossy().into_owned(), json)) + } + Err(e) => { + error!("{}", e); + None } } - Err(e) => { - return Err(e.into()); + }) + .map(|(path, json)| (path, serde_json::from_str::(&json).unwrap())) + .collect(); + info!("Adding {} new videos", metadata.len()); + metadata.extend(old_metadata); + + let f = File::create(Path::new(&self.root).join("metadata.json"))?; + let f = BufWriter::new(f); + serde_json::ser::to_writer_pretty(f, &metadata)?; + Ok(()) + } + + fn iter_video_files(&self) -> impl Send + Iterator> { + glob(&format!("{}/*/*", self.root)).unwrap().filter(|path| { + let path = path.as_ref().unwrap(); + match path.extension() { + Some(ext) => { + let ext: &str = &ext.to_str().unwrap().to_lowercase(); + if !MOVIE_EXTS.contains(&ext) { + return false; + } + } + None => return false, + } + return true; + }) + } + + pub fn movies(&self, include_stale: bool) -> Result<(HashMap), Error> { + let mut movies = HashMap::new(); + for md in glob(&format!("{}/*/metadata.json", self.root))? { + let path = md?; + let mdf = read_metadata_from_file(&path)?; + for (name, md) in mdf.metadata { + if include_stale { + movies.insert(name, md); + } else { + // Filter out files that don't exist + let mut p = PathBuf::from(&self.root); + p.push(&name); + if p.is_file() { + movies.insert(name, md); + } } } } @@ -75,13 +263,15 @@ impl MovieLibrary { } } -fn read_metadata_from_file>(path: P) -> Result> { +fn read_metadata_from_file>(path: P) -> Result { + let path = path.as_ref(); // Open the file in read-only mode with buffer. - let file = File::open(path)?; - let reader = BufReader::new(file); + let f = File::open(path).context(format!("open {}", path.display()))?; + let r = BufReader::new(f); // Read the JSON contents of the file as an instance of `User`. - let md = serde_json::from_reader(reader)?; + let md = serde_json::from_reader(r) + .context(format!("serde_json::from_reader {}", path.display()))?; // Return the `User`. Ok(md) @@ -95,6 +285,14 @@ mod tests { format!("{}/testdata", env::var("CARGO_MANIFEST_DIR").unwrap()) } + #[test] + fn test_read_full_metadata() { + let mdf = read_metadata_from_file(Path::new(&testdata_dir()).join("Movies/metadata.json")) + .expect("failed to read metadata"); + assert_eq!(mdf.metadata.len(), 1214); + } + + /* #[test] fn test_movies() { let lib = MovieLibrary::new(format!("{}/Movies", testdata_dir())); @@ -116,7 +314,9 @@ mod tests { assert_eq!(got, want); } + */ + /* #[test] fn test_filter_stale() { let lib = MovieLibrary::new(format!("{}/Movies", testdata_dir())); @@ -137,4 +337,5 @@ mod tests { assert_eq!(got, want); } + */ } diff --git a/src/main.rs b/src/main.rs index 3016c37..24711ea 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,19 +25,29 @@ fn clean_path_parent>(path: P) -> PathBuf { PathBuf::from(path) } -fn print_movie_groups(movie_groups: &HashMap>) { +fn print_movie_groups(movie_groups: &HashMap>) { let mut names = movie_groups.keys().collect::>(); names.sort(); + let mut fmtr = Formatter::new(); + fmtr.with_separator(""); + fmtr.with_scales(Scales::Binary()); for name in names { let paths = &movie_groups[name]; if paths.len() < 2 { continue; } - let dir = name.to_str().unwrap(); - println!("{}:", &dir[MOVIE_DIR.len() + 1..]); - for p in paths { - println!(" {}", &p[p.rfind("/").unwrap() + 1..]); + let mut file: Vec<_> = movie_groups[name].iter().collect(); + file.sort_by(|(n1, _), (n2, _)| n1.partial_cmp(n2).unwrap()); + println!("{}:", name.display()); + for (p, md) in file { + println!( + " {:>9} {:>9} {} {}", + md.dimension().unwrap(), + fmtr.format(md.size() as f64), + md.duration(), + &p[p.rfind("/").unwrap() + 1..] + ); } } } @@ -57,9 +67,9 @@ fn print_movies(movies: &HashMap, filter: Option<&Regex>) { let md = &movies[name]; info!( "{:>9} {:>8} {} {}", - md.dimension, - fmtr.format(md.size as f64), - md.duration_text, + md.dimension().unwrap(), + fmtr.format(md.size() as f64), + md.duration(), &name[MOVIE_DIR.len() + 1..] ); println!("mv '{}' '{}'", name, TO_BE_REMOVED_DIR); @@ -72,6 +82,13 @@ enum Command { Samples, #[structopt(name = "groups", about = "Print movies grouped by root name")] Groups, + #[structopt( + name = "compact-metadata", + about = "Read full metadata file and write compact file." + )] + CompactMetadata, + #[structopt(name = "update-metadata", about = "Write metadata files")] + UpdateMetadata, } #[derive(StructOpt)] @@ -86,15 +103,22 @@ struct SuperDeduper { parse(from_occurrences) )] verbose: usize, + #[structopt(long = "module", help = "Additional log target to enable")] + module: Option, #[structopt(subcommand)] // Note that we mark a field as a subcommand cmd: Command, } fn main() -> Result<(), Box> { let app = SuperDeduper::from_args(); + let mut modules = vec![module_path!().to_string()]; + if let Some(module) = app.module { + modules.push(module); + } stderrlog::new() .verbosity(app.verbose) .timestamp(stderrlog::Timestamp::Millisecond) + .modules(modules) .init() .unwrap(); @@ -110,15 +134,23 @@ fn main() -> Result<(), Box> { let lib = MovieLibrary::new(MOVIE_DIR); let movies = lib.movies(false)?; - let mut movie_groups: HashMap> = HashMap::new(); - for name in movies.keys() { + let mut movie_groups: HashMap> = HashMap::new(); + for (name, md) in movies.into_iter() { let clean_name = clean_path_parent(&name); let paths = movie_groups.entry(clean_name).or_insert(Vec::new()); - paths.push(name.to_string()) + paths.push((name.to_string(), md)); } print_movie_groups(&movie_groups); } + Command::CompactMetadata => { + let lib = MovieLibrary::new(MOVIE_DIR); + lib.compact_metadata()?; + } + Command::UpdateMetadata => { + let lib = MovieLibrary::new(MOVIE_DIR); + lib.update_metadata()?; + } } Ok(()) } diff --git a/testdata/Movies/metadata.json b/testdata/Movies/metadata.json new file mode 100644 index 0000000..d3a4eb3 --- /dev/null +++ b/testdata/Movies/metadata.json @@ -0,0 +1,226292 @@ +{ + "Pirates of the Caribbean: On Stranger Tides/refined-pirates4-720p.mkv": { + "format": { + "bit_rate": "6884084", + "duration": "8183.851000", + "filename": "Pirates of the Caribbean: On Stranger Tides/refined-pirates4-720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "7042289911", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-23T03:33:57.000000Z", + "encoder": "libebml v1.2.0 + libmatroska v1.1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 11, + "start_time": "0.011000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8183.851000", + "duration_ts": 8183851, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Dawn of the Dead (2004)/Dawn Of The Dead.mp4": { + "format": { + "bit_rate": "2367345", + "duration": "6553.365000", + "filename": "Dawn of the Dead (2004)/Dawn Of The Dead.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1939259530", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2010-07-25T17:21:02.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2046395", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6553.338458", + "duration_ts": 157280123, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "157123", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2010-07-25T17:21:02.000000Z", + "handler_name": "Dawn Of The Dead", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "317375", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6553.365333", + "duration_ts": 314561536, + "index": 1, + "max_bit_rate": "332976", + "nb_frames": "307189", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-07-25T17:25:15.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (internal rev. 5)", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Harold and Kumar Go To White Castle/Harold and Kumar Go to White Castle.avi": { + "format": { + "bit_rate": "1171120", + "duration": "5013.560000", + "filename": "Harold and Kumar Go To White Castle/Harold and Kumar Go to White Castle.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733935616", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1026890", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 416, + "coded_width": 576, + "display_aspect_ratio": "18:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5013.560000", + "duration_ts": 125339, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "125339", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131352", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5013.480000", + "duration_ts": 208895, + "index": 1, + "nb_frames": "208895", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Dune/Dune.1984.Extended.WS.DVDRip.XviD-FRAGMENT.CD2.avi": { + "format": { + "bit_rate": "1157375", + "duration": "5066.066066", + "filename": "Dune/Dune.1984.Extended.WS.DVDRip.XviD-FRAGMENT.CD2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732917760", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1001948", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5066.066066", + "duration_ts": 121464, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "121464", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "141336", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5066.016000", + "duration_ts": 211084, + "index": 1, + "nb_frames": "211084", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Saint (1997)/The.Saint.1997.1080p.AMZN.WEB-DL.DDP5.1.H.264-monkee.mkv": { + "format": { + "bit_rate": "12909613", + "duration": "6970.380000", + "filename": "The Saint (1997)/The.Saint.1997.1080p.AMZN.WEB-DL.DDP5.1.H.264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "11248114188", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-05-27T17:00:54.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12267402", + "BPS-eng": "12267402", + "DURATION": "01:56:10.380000000", + "DURATION-eng": "01:56:10.380000000", + "NUMBER_OF_BYTES": "10688557024", + "NUMBER_OF_BYTES-eng": "10688557024", + "NUMBER_OF_FRAMES": "167122", + "NUMBER_OF_FRAMES-eng": "167122", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-27 17:00:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-27 17:00:54" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:56:10.336000000", + "DURATION-eng": "01:56:10.336000000", + "NUMBER_OF_BYTES": "557626880", + "NUMBER_OF_BYTES-eng": "557626880", + "NUMBER_OF_FRAMES": "217823", + "NUMBER_OF_FRAMES-eng": "217823", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-27 17:00:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-27 17:00:54", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6970.380000", + "duration_ts": 6970380, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "01:53:29.837000000", + "DURATION-eng": "01:53:29.837000000", + "NUMBER_OF_BYTES": "40473", + "NUMBER_OF_BYTES-eng": "40473", + "NUMBER_OF_FRAMES": "1384", + "NUMBER_OF_FRAMES-eng": "1384", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-27 17:00:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-27 17:00:54", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6970.380000", + "duration_ts": 6970380, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "01:53:29.837000000", + "DURATION-eng": "01:53:29.837000000", + "NUMBER_OF_BYTES": "43705", + "NUMBER_OF_BYTES-eng": "43705", + "NUMBER_OF_FRAMES": "1562", + "NUMBER_OF_FRAMES-eng": "1562", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-27 17:00:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-27 17:00:54", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Chronicles Of Narnia Prince Caspian (2008)/The.Chronicles.Of.Narnia.Prince.Caspian.2008.x265.mkv": { + "format": { + "bit_rate": "9887629", + "duration": "8998.688000", + "filename": "The Chronicles Of Narnia Prince Caspian (2008)/The.Chronicles.Of.Narnia.Prince.Caspian.2008.x265.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 9, + "probe_score": 100, + "size": "11121961624", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2017-10-12T15:10:46.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1088, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "19015799", + "BPS-eng": "19015799", + "DURATION": "02:29:58.657000000", + "DURATION-eng": "02:29:58.656000000", + "ENCODER": "Lavc58.35.100 libx265", + "NUMBER_OF_BYTES": "21389579628", + "NUMBER_OF_BYTES-eng": "21389579628", + "NUMBER_OF_FRAMES": "215752", + "NUMBER_OF_FRAMES-eng": "215752", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4033720", + "BPS-eng": "4033720", + "DURATION": "02:29:58.665000000", + "DURATION-eng": "02:29:58.667000000", + "NUMBER_OF_BYTES": "4537263300", + "NUMBER_OF_BYTES-eng": "4537263300", + "NUMBER_OF_FRAMES": "843625", + "NUMBER_OF_FRAMES-eng": "843625", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "02:29:58.688000000", + "DURATION-eng": "02:29:58.688000000", + "NUMBER_OF_BYTES": "215968512", + "NUMBER_OF_BYTES-eng": "215968512", + "NUMBER_OF_FRAMES": "281209", + "NUMBER_OF_FRAMES-eng": "281209", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "eng", + "title": "English commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8998.688000", + "duration_ts": 8998688, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13101", + "BPS-eng": "13101", + "DURATION": "02:17:29.700000000", + "DURATION-eng": "02:16:22.841000000", + "NUMBER_OF_BYTES": "13401275", + "NUMBER_OF_BYTES-eng": "13401275", + "NUMBER_OF_FRAMES": "1864", + "NUMBER_OF_FRAMES-eng": "1864", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8998.688000", + "duration_ts": 8998688, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14486", + "BPS-eng": "14486", + "DURATION": "02:17:46.759000000", + "DURATION-eng": "02:16:47.908000000", + "NUMBER_OF_BYTES": "14863199", + "NUMBER_OF_BYTES-eng": "14863199", + "NUMBER_OF_FRAMES": "2148", + "NUMBER_OF_FRAMES-eng": "2148", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8998.688000", + "duration_ts": 8998688, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54322", + "BPS-eng": "54322", + "DURATION": "02:18:26.424000000", + "DURATION-eng": "02:18:14.912000000", + "NUMBER_OF_BYTES": "56325441", + "NUMBER_OF_BYTES-eng": "56325441", + "NUMBER_OF_FRAMES": "4764", + "NUMBER_OF_FRAMES-eng": "4764", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "eng", + "title": "English commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8998.688000", + "duration_ts": 8998688, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13913", + "BPS-eng": "13913", + "DURATION": "02:17:29.742000000", + "DURATION-eng": "02:16:22.925000000", + "NUMBER_OF_BYTES": "14232148", + "NUMBER_OF_BYTES-eng": "14232148", + "NUMBER_OF_FRAMES": "1872", + "NUMBER_OF_FRAMES-eng": "1872", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8998.688000", + "duration_ts": 8998688, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12327", + "BPS-eng": "12327", + "DURATION": "02:17:29.742000000", + "DURATION-eng": "02:16:22.925000000", + "NUMBER_OF_BYTES": "12608960", + "NUMBER_OF_BYTES-eng": "12608960", + "NUMBER_OF_FRAMES": "1812", + "NUMBER_OF_FRAMES-eng": "1812", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8998.688000", + "duration_ts": 8998688, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12997", + "BPS-eng": "12997", + "DURATION": "02:17:29.742000000", + "DURATION-eng": "02:16:22.925000000", + "NUMBER_OF_BYTES": "13295125", + "NUMBER_OF_BYTES-eng": "13295125", + "NUMBER_OF_FRAMES": "1828", + "NUMBER_OF_FRAMES-eng": "1828", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 15:10:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 15:10:46", + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + } + ] + }, + "Shazam (2019)/bb61015d25cc4791bf654dbc421ad66a.mkv": { + "format": { + "bit_rate": "9502472", + "duration": "7903.136000", + "filename": "Shazam (2019)/bb61015d25cc4791bf654dbc421ad66a.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "9387416312", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-26T12:27:37.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "8860557", + "DURATION-eng": "02:11:43.104000000", + "NUMBER_OF_BYTES-eng": "8753238913", + "NUMBER_OF_FRAMES-eng": "189485", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-26 12:27:37" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:11:43.136000000", + "NUMBER_OF_BYTES-eng": "632250880", + "NUMBER_OF_FRAMES-eng": "246973", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-26 12:27:37", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Knocked Up (2007)/Knocked.Up[2007][Unrated.Edition]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "738032", + "duration": "7977.519186", + "filename": "Knocked Up (2007)/Knocked.Up[2007][Unrated.Edition]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735959040", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "632724", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 306, + "coded_width": 580, + "display_aspect_ratio": "290:153", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7977.519186", + "duration_ts": 191269, + "has_b_frames": 1, + "height": 306, + "index": 0, + "level": 5, + "nb_frames": "191269", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 580 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "332397", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Easy Rider (1969)/Easy Rider_1969_DVDrip_XviD-Ekolb.avi": { + "format": { + "bit_rate": "1065603", + "duration": "5503.000000", + "filename": "Easy Rider (1969)/Easy Rider_1969_DVDrip_XviD-Ekolb.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733001728", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "930292", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5503.000000", + "duration_ts": 137575, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "137575", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "229292", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "My Blue Heaven (1990)/My Blue Heaven [.x264] Steve Martin, Rick Moranis.mkv": { + "format": { + "bit_rate": "1330296", + "duration": "5728.703000", + "filename": "My Blue Heaven (1990)/My Blue Heaven [.x264] Steve Martin, Rick Moranis.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "952608888", + "start_time": "0.000000", + "tags": { + "encoder": "libmkv 0.6.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24955/1037", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1037/49910", + "codec_type": "video", + "coded_height": 480, + "coded_width": 718, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "80057:60240", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24955/1037", + "refs": 1, + "sample_aspect_ratio": "223:251", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5728.703000", + "duration_ts": 5728703, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5728.703000", + "duration_ts": 5728703, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Groundhog Day/Groundhog Day.avi": { + "format": { + "bit_rate": "974255", + "duration": "5817.000000", + "filename": "Groundhog Day/Groundhog Day.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "708405248", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "847465", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5817.000000", + "duration_ts": 145425, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "145425", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113880", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5817.000000", + "duration_ts": 242375, + "index": 1, + "nb_frames": "242375", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Captain Marvel (2019)/9c019b8d39854ac6aca7f1c61ea9c3ba.mkv": { + "format": { + "bit_rate": "4925957", + "duration": "7420.576000", + "filename": "Captain Marvel (2019)/9c019b8d39854ac6aca7f1c61ea9c3ba.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "4569179873", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-27T15:43:04.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4540072", + "DURATION-eng": "02:03:40.492000000", + "NUMBER_OF_BYTES-eng": "4211196875", + "NUMBER_OF_FRAMES-eng": "177915", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-27 15:43:04", + "language": "eng", + "title": "Captain.Marvel.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:03:40.576000000", + "NUMBER_OF_BYTES-eng": "356187648", + "NUMBER_OF_FRAMES-eng": "231893", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-27 15:43:04", + "language": "eng", + "title": "Captain.Marvel.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7420.576000", + "duration_ts": 667851840, + "has_b_frames": 0, + "height": 120, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7420.576000", + "duration_ts": 667851840, + "has_b_frames": 0, + "height": 882, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7420.576000", + "duration_ts": 667851840, + "has_b_frames": 0, + "height": 600, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7420.576000", + "duration_ts": 667851840, + "has_b_frames": 0, + "height": 176, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + } + ] + }, + "The Green Mile/Green Mile [Eng][XviD][1999].avi": { + "format": { + "bit_rate": "541008", + "duration": "10853.208000", + "filename": "The Green Mile/Green Mile [Eng][XviD][1999].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733960192", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "401708", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 480, + "display_aspect_ratio": "30:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "10853.200000", + "duration_ts": 271330, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "271330", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 480 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126392", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10853.208000", + "duration_ts": 452217, + "index": 1, + "nb_frames": "452217", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Alien 3 (1992)/Alien.3.1992.Directors.Cut.iNTERNAL.CRF.720p.BluRay.x264-MOOVEE.mkv": { + "format": { + "bit_rate": "3941433", + "duration": "8692.651000", + "filename": "Alien 3 (1992)/Alien.3.1992.Directors.Cut.iNTERNAL.CRF.720p.BluRay.x264-MOOVEE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4282688245", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-10-05T10:47:57.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8692.651000", + "duration_ts": 8692651, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Requiem For A Dream/Requiem for a Dream.avi": { + "format": { + "bit_rate": "936166", + "duration": "6069.002336", + "filename": "Requiem For A Dream/Requiem for a Dream.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "710199296", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "796700", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 360, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6069.002336", + "duration_ts": 181888, + "has_b_frames": 0, + "height": 360, + "index": 0, + "level": -99, + "nb_frames": "181888", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "96882444", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/15963" + } + ] + }, + "My Blueberry Nights (2007)/MY BLUEBERRY NIGHTS[2007][ENG][AC3 5.1][DVDRip]-FLAWL3SS.avi": { + "format": { + "bit_rate": "1535532", + "duration": "5411.531125", + "filename": "My Blueberry Nights (2007)/MY BLUEBERRY NIGHTS[2007][ENG][AC3 5.1][DVDRip]-FLAWL3SS.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1038697664", + "start_time": "0.000000", + "tags": { + "IRTD": "Unrated", + "album": "MY BLUEBERRY NIGHTS", + "artist": "NVmE", + "encoder": "FLAWL3SS FX ", + "language": "Undefined", + "title": "MY BLUEBERRY NIGHTS" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1076835", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 268, + "coded_width": 624, + "display_aspect_ratio": "156:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5411.531125", + "duration_ts": 129747, + "has_b_frames": 0, + "height": 268, + "index": 0, + "level": 3, + "nb_frames": "129747", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "303039744", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Iron Man (2008)/Ironman.XviD.720p-XvAvX.avi": { + "format": { + "bit_rate": "2252393", + "duration": "7561.728000", + "filename": "Iron Man (2008)/Ironman.XviD.720p-XvAvX.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2128998524", + "start_time": "0.000000", + "tags": { + "encoder": "Lavf52.22.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2047824", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x64697678", + "codec_tag_string": "xvid", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7560.970083", + "duration_ts": 181282, + "has_b_frames": 0, + "height": 528, + "index": 0, + "level": 3, + "nb_frames": "181282", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7561.728000", + "duration_ts": 315072, + "index": 1, + "nb_frames": "315072", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Deadpool (2016)/Deadpool 2016 1080p WEB-DL x264 AC3-JYK.mkv": { + "format": { + "bit_rate": "3741753", + "duration": "6521.682000", + "filename": "Deadpool (2016)/Deadpool 2016 1080p WEB-DL x264 AC3-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3050315862", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-04-26T02:43:04.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 798, + "coded_width": 1912, + "display_aspect_ratio": "956:399", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 798, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3548990", + "BPS-eng": "3548990", + "DURATION": "01:48:41.682000000", + "DURATION-eng": "01:48:41.682000000", + "NUMBER_OF_BYTES": "2893173189", + "NUMBER_OF_BYTES-eng": "2893173189", + "NUMBER_OF_FRAMES": "156364", + "NUMBER_OF_FRAMES-eng": "156364", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-26 02:43:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-26 02:43:04", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1912 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "01:48:07.712000000", + "DURATION-eng": "01:48:07.712000000", + "NUMBER_OF_BYTES": "155705088", + "NUMBER_OF_BYTES-eng": "155705088", + "NUMBER_OF_FRAMES": "202741", + "NUMBER_OF_FRAMES-eng": "202741", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-26 02:43:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-26 02:43:04", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Choke (2008)/Choke[2008]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "1061823", + "duration": "5528.977373", + "filename": "Choke (2008)/Choke[2008]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733849656", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.7, Aug 8 2006 20:59:17" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "925078", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 320, + "coded_width": 608, + "display_aspect_ratio": "19:10", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5528.977373", + "duration_ts": 132563, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "132563", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "10000000/417083", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5528.592000", + "duration_ts": 230358, + "index": 1, + "nb_frames": "230358", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Code 46 (2003)/Code.46.2003.HDTVRipAVC-DAREDEV!LS.mkv": { + "format": { + "bit_rate": "2437323", + "duration": "5348.352000", + "filename": "Code 46 (2003)/Code.46.2003.HDTVRipAVC-DAREDEV!LS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1629457852", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-09-01T15:54:17.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Code 46 (2003)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 490, + "coded_width": 1152, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "576:245", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 490, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1152 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Inherit The Wind/Inherit The Wind - Spencer Tracy, Gene Kelly - Stanley Kramer - 1960 - (Divx 5.0-97 Kbps).avi": { + "format": { + "bit_rate": "763621", + "duration": "7701.076076", + "filename": "Inherit The Wind/Inherit The Wind - Spencer Tracy, Gene Kelly - Stanley Kramer - 1960 - (Divx 5.0-97 Kbps).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735088640", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "630727", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 480, + "display_aspect_ratio": "5:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7701.076076", + "duration_ts": 184641, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "184641", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 480 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "120232", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7701.000000", + "duration_ts": 320875, + "index": 1, + "nb_frames": "320875", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Sisters (2015)/Sisters.2015.Theatrical.Cut.720p.BluRay.DTS.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "7703241", + "duration": "7066.559000", + "filename": "Sisters (2015)/Sisters.2015.Theatrical.Cut.720p.BluRay.DTS.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "6804426447", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-04-26T10:25:09Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 42, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Wolverine (2013)/The.Wolverine.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2113900", + "duration": "8294.526667", + "filename": "The Wolverine (2013)/The.Wolverine.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2191725898", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-11-07T13:39:02.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2016037", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 798, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8294.411125", + "duration_ts": 199065867, + "has_b_frames": 2, + "height": 798, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "198867", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-11-07T13:39:02.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93799", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8294.528000", + "duration_ts": 398137344, + "index": 1, + "max_bit_rate": "102160", + "nb_frames": "388806", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-07T13:39:15.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "American Hustle (2013)/1ddf499610e441afb0d704be1bd3847f.mkv": { + "format": { + "bit_rate": "4872452", + "duration": "8284.286000", + "filename": "American Hustle (2013)/1ddf499610e441afb0d704be1bd3847f.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "5045598813", + "start_time": "0.000000", + "tags": { + "Writing frontend": "StaxRip v1.7.0.6", + "creation_time": "2019-01-02T22:32:25.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "American Hustle 2013 1080p Blu-ray Remux AVC DTS HD MA 5.1 - KRaLiMaRKo" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4499550", + "BPS-eng": "4499550", + "DURATION": "02:18:04.276000000", + "DURATION-eng": "02:18:04.276000000", + "NUMBER_OF_BYTES": "4659439738", + "NUMBER_OF_BYTES-eng": "4659439738", + "NUMBER_OF_FRAMES": "198624", + "NUMBER_OF_FRAMES-eng": "198624", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-02 22:32:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 22:32:25" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS": "338199", + "BPS-eng": "338199", + "DURATION": "02:18:04.266000000", + "DURATION-eng": "02:18:04.266000000", + "NUMBER_OF_BYTES": "350217195", + "NUMBER_OF_BYTES-eng": "350217195", + "NUMBER_OF_FRAMES": "388325", + "NUMBER_OF_FRAMES-eng": "388325", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-02 22:32:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 22:32:25", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8284.286000", + "duration_ts": 8284286, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "21753", + "BPS-eng": "21753", + "DURATION": "00:01:09.920000000", + "DURATION-eng": "00:01:09.920000000", + "NUMBER_OF_BYTES": "190125", + "NUMBER_OF_BYTES-eng": "190125", + "NUMBER_OF_FRAMES": "24", + "NUMBER_OF_FRAMES-eng": "24", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-02 22:32:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 22:32:25", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8284.286000", + "duration_ts": 8284286, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "64703", + "BPS-eng": "64703", + "DURATION": "02:10:24.900000000", + "DURATION-eng": "02:10:24.900000000", + "NUMBER_OF_BYTES": "63287383", + "NUMBER_OF_BYTES-eng": "63287383", + "NUMBER_OF_FRAMES": "5494", + "NUMBER_OF_FRAMES-eng": "5494", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-02 22:32:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 22:32:25", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8284.286000", + "duration_ts": 8284286, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "58079", + "BPS-eng": "58079", + "DURATION": "02:16:57.959000000", + "DURATION-eng": "02:16:57.959000000", + "NUMBER_OF_BYTES": "59661369", + "NUMBER_OF_BYTES-eng": "59661369", + "NUMBER_OF_FRAMES": "6165", + "NUMBER_OF_FRAMES-eng": "6165", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-02 22:32:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 22:32:25", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "One Man Band (2005)/one.man.band.2005.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4645594", + "duration": "273.312000", + "filename": "One Man Band (2005)/one.man.band.2005.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "158712101", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T03:34:37.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Monsters Inc (2001)/Monsters.Inc.2001.1080p.BluRay.x264-CiNEFiLE.mkv": { + "format": { + "bit_rate": "10179141", + "duration": "5535.830000", + "filename": "Monsters Inc (2001)/Monsters.Inc.2001.1080p.BluRay.x264-CiNEFiLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "7043749314", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-05-21T13:03:41.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5535.830000", + "duration_ts": 5535830, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Strange Brew/Strange Brew(1983)(XviD)[SquiggiE].avi": { + "format": { + "bit_rate": "1078682", + "duration": "5423.334583", + "filename": "Strange Brew/Strange Brew(1983)(XviD)[SquiggiE].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731256832", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2117/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "877132", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 544, + "display_aspect_ratio": "34:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5423.334583", + "duration_ts": 130030, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "130030", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 544 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "130160030", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Toy Story 2 (1999)/Toy.Story.2.1999.Bluray.720p.H264.mp4": { + "format": { + "bit_rate": "1463602", + "duration": "5545.428333", + "filename": "Toy Story 2 (1999)/Toy.Story.2.1999.Bluray.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1014537801", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2016-09-17T09:41:50.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64571", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5545.429333", + "duration_ts": 266180608, + "index": 0, + "max_bit_rate": "98456", + "nb_frames": "259942", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-17T09:41:50.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1395124", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5545.373167", + "duration_ts": 133088956, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "132956", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2016-09-17T09:41:53.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "True Lies/True Lies.m4v": { + "format": { + "bit_rate": "2032563", + "duration": "8448.384000", + "filename": "True Lies/True Lies.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2146484548", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-06T23:58:07.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1653832015/68989139", + "bit_rate": "1414472", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "17320865/830443791", + "codec_type": "video", + "coded_height": 272, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "157:68", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8448.357044", + "duration_ts": 760352134, + "has_b_frames": 1, + "height": 272, + "index": 0, + "is_avc": "true", + "level": 21, + "nal_length_size": "4", + "nb_frames": "202527", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "157:180", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T23:58:07.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164719", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8448.384000", + "duration_ts": 405522432, + "index": 1, + "max_bit_rate": "270760", + "nb_frames": "396018", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T23:58:07.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "8448.384000", + "duration_ts": 405522432, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "264012", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T23:58:07.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Ant Man And The Wasp (2018)/b0f57c8848334eb0906e8e6ffccd680e.mkv": { + "format": { + "bit_rate": "4892676", + "duration": "7085.760000", + "filename": "Ant Man And The Wasp (2018)/b0f57c8848334eb0906e8e6ffccd680e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "4333541147", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-10-01T15:15:32.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Ant.Man.and.the.Wasp.2018.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "4506776", + "DURATION-eng": "01:58:05.704000000", + "NUMBER_OF_BYTES-eng": "3991710154", + "NUMBER_OF_FRAMES-eng": "169887", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v27.0.0 ('Metropolis') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-01 15:15:32", + "language": "eng", + "title": "Ant.Man.and.the.Wasp.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:58:05.760000000", + "NUMBER_OF_BYTES-eng": "340116480", + "NUMBER_OF_FRAMES-eng": "221430", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v27.0.0 ('Metropolis') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-01 15:15:32", + "language": "eng", + "title": "Ant.Man.and.the.Wasp.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7085.760000", + "duration_ts": 637718400, + "has_b_frames": 0, + "height": 600, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7085.760000", + "duration_ts": 637718400, + "has_b_frames": 0, + "height": 176, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7085.760000", + "duration_ts": 637718400, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7085.760000", + "duration_ts": 637718400, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "The Last Starfighter (1984)/the.last.starfighter.1984.multi.1080p.hdtv.x264-ukdhd.mkv": { + "format": { + "bit_rate": "4931831", + "duration": "5783.520000", + "filename": "The Last Starfighter (1984)/the.last.starfighter.1984.multi.1080p.hdtv.x264-ukdhd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3565418605", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-03T22:09:24.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1910, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "955:398", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4737609", + "DURATION-eng": "01:36:23.520000000", + "NUMBER_OF_BYTES-eng": "3425007182", + "NUMBER_OF_FRAMES-eng": "144588", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-03 22:09:24", + "language": "fre", + "title": "Starfighter" + }, + "time_base": "1/1000", + "width": 1910 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "96000", + "DURATION-eng": "01:36:23.520000000", + "NUMBER_OF_BYTES-eng": "69402240", + "NUMBER_OF_FRAMES-eng": "180735", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-03 22:09:24", + "language": "fre", + "title": "Français E-AC3 2.0" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "96000", + "DURATION-eng": "01:36:23.520000000", + "NUMBER_OF_BYTES-eng": "69402240", + "NUMBER_OF_FRAMES-eng": "180735", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-03 22:09:24", + "language": "eng", + "title": "Anglais E-AC3 2.0" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5783.520000", + "duration_ts": 5783520, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40", + "DURATION-eng": "01:33:31.680000000", + "NUMBER_OF_BYTES-eng": "28101", + "NUMBER_OF_FRAMES-eng": "948", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-03 22:09:24", + "language": "fre", + "title": "Français" + }, + "time_base": "1/1000" + } + ] + }, + "Rogue One (2016)/rogue.one.2016.720p.brrip.x264.ac3-evo.mkv": { + "format": { + "bit_rate": "3277367", + "duration": "8037.280000", + "filename": "Rogue One (2016)/rogue.one.2016.720p.brrip.x264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3292639541", + "start_time": "0.078000", + "tags": { + "creation_time": "2017-03-17T21:50:54.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "What We Do In The Shadows (2014)/What.We.do.in.the.Shadows.2014.1080p.BluRay.x264.anomous.mp4": { + "format": { + "bit_rate": "2835764", + "duration": "5134.003333", + "filename": "What We Do In The Shadows (2014)/What.We.do.in.the.Shadows.2014.1080p.BluRay.x264.anomous.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1819852859", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-08-05T23:51:40.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2327200", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5134.003875", + "duration_ts": 123216093, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "123093", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2015-08-05T23:51:40.000000Z", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "378607", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5133.674667", + "duration_ts": 246416384, + "index": 1, + "max_bit_rate": "449664", + "nb_frames": "240641", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-08-05T15:43:41.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124179", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5133.674667", + "duration_ts": 246416384, + "index": 2, + "max_bit_rate": "140312", + "nb_frames": "240641", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-08-05T15:39:43.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Destination Wedding (2018)/21288d1766844db79806c2a9709de507.mkv": { + "format": { + "bit_rate": "10845584", + "duration": "5191.008000", + "filename": "Destination Wedding (2018)/21288d1766844db79806c2a9709de507.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7037439183", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-29T12:36:25.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9334202", + "BPS-eng": "9334202", + "DURATION": "01:26:31.000000000", + "DURATION-eng": "01:26:31.000000000", + "NUMBER_OF_BYTES": "6056730411", + "NUMBER_OF_BYTES-eng": "6056730411", + "NUMBER_OF_FRAMES": "124584", + "NUMBER_OF_FRAMES-eng": "124584", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-29 12:36:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-29 12:36:25", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:26:31.008000000", + "DURATION-eng": "01:26:31.008000000", + "NUMBER_OF_BYTES": "979153884", + "NUMBER_OF_BYTES-eng": "979153884", + "NUMBER_OF_FRAMES": "486657", + "NUMBER_OF_FRAMES-eng": "486657", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-29 12:36:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-29 12:36:25", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Ted (2012)/Ted.2012.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "962522", + "duration": "6076.308333", + "filename": "Ted (2012)/Ted.2012.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731072856", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-11-08T12:17:59.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64542", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6076.309333", + "duration_ts": 291662848, + "index": 0, + "max_bit_rate": "73872", + "nb_frames": "284827", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-08T12:17:59.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "894054", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6076.236833", + "duration_ts": 145829684, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "145684", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-11-08T12:18:02.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Shrek (2001)/0826dac7aff54f6a8be7b51da848e709.mkv": { + "format": { + "bit_rate": "11894574", + "duration": "5408.487000", + "filename": "Shrek (2001)/0826dac7aff54f6a8be7b51da848e709.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8041456664", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-07-31T19:28:03.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "10419909", + "BPS-eng": "10419909", + "DURATION": "01:30:08.487000000", + "DURATION-eng": "01:30:08.487000000", + "NUMBER_OF_BYTES": "7044493014", + "NUMBER_OF_BYTES-eng": "7044493014", + "NUMBER_OF_FRAMES": "129674", + "NUMBER_OF_FRAMES-eng": "129674", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-31 19:28:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-31 19:28:03" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:30:08.480000000", + "DURATION-eng": "01:30:08.480000000", + "NUMBER_OF_BYTES": "432678400", + "NUMBER_OF_BYTES-eng": "432678400", + "NUMBER_OF_FRAMES": "169015", + "NUMBER_OF_FRAMES-eng": "169015", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-31 19:28:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-31 19:28:03", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:30:08.448000000", + "DURATION-eng": "01:30:08.448000000", + "NUMBER_OF_BYTES": "432675840", + "NUMBER_OF_BYTES-eng": "432675840", + "NUMBER_OF_FRAMES": "169014", + "NUMBER_OF_FRAMES-eng": "169014", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-31 19:28:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-31 19:28:03", + "language": "eng", + "title": "Audio Description" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "01:30:08.480000000", + "DURATION-eng": "01:30:08.480000000", + "NUMBER_OF_BYTES": "129803520", + "NUMBER_OF_BYTES-eng": "129803520", + "NUMBER_OF_FRAMES": "169015", + "NUMBER_OF_FRAMES-eng": "169015", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-31 19:28:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-31 19:28:03", + "language": "eng", + "title": "Commentary: Aron Warner, Vicky Jenson & Andrew Adamson" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5408.487000", + "duration_ts": 5408487, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:22:14.137000000", + "DURATION-eng": "01:22:14.137000000", + "NUMBER_OF_BYTES": "40845", + "NUMBER_OF_BYTES-eng": "40845", + "NUMBER_OF_FRAMES": "1061", + "NUMBER_OF_FRAMES-eng": "1061", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-31 19:28:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-31 19:28:03", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "JCVD (2008)/JCVD.2008.720p.BluRay.x264-AdiT.mkv": { + "format": { + "bit_rate": "2797807", + "duration": "5792.224000", + "filename": "JCVD (2008)/JCVD.2008.720p.BluRay.x264-AdiT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2025691278", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-04T13:29:50.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5792.224000", + "duration_ts": 5792224, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Hitchhikers Guide to the Galaxy/Hitchhikers Guide.avi": { + "format": { + "bit_rate": "937811", + "duration": "6260.520000", + "filename": "Hitchhikers Guide to the Galaxy/Hitchhikers Guide.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733898752", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "797997", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 592, + "display_aspect_ratio": "37:16", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6260.520000", + "duration_ts": 156513, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 3, + "nb_frames": "156513", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126968", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6260.040000", + "duration_ts": 260835, + "index": 1, + "nb_frames": "260835", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Girl With The Dragon Tattoo (2009)/8530b23258134ff586028c12af3692bb.mkv": { + "format": { + "bit_rate": "10247985", + "duration": "9164.113000", + "filename": "The Girl With The Dragon Tattoo (2009)/8530b23258134ff586028c12af3692bb.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "11739211691", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.2 (date: 2010 febr 17)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "Swedish AC3 448kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9164.113000", + "duration_ts": 9164113, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Sleepless in Seattle (1993)/[ www.UsaBit.com ] - Sleepless in Seattle 1993 720p WEBRip x264-PLAYNOW.mp4": { + "format": { + "bit_rate": "1081674", + "duration": "6305.898667", + "filename": "Sleepless in Seattle (1993)/[ www.UsaBit.com ] - Sleepless in Seattle 1993 720p WEBRip x264-PLAYNOW.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "852616146", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2013-04-12T15:58:20.000000Z", + "encoder": "HandBrake 0.9.8 2012071700", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1511900000/63058897", + "bit_rate": "916217", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "38957345/1868082466", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6305.889700", + "duration_ts": 567530073, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "151190", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-04-12T15:58:20.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159983", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6305.898667", + "duration_ts": 302683136, + "index": 1, + "max_bit_rate": "262232", + "nb_frames": "295589", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-04-12T15:58:20.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "2036 Origin Unknown (2018)/70aad043f4ac4c4c9f695991fb3de500.mkv": { + "format": { + "bit_rate": "4939485", + "duration": "5674.144000", + "filename": "2036 Origin Unknown (2018)/70aad043f4ac4c4c9f695991fb3de500.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3503419154", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-07T22:10:41.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1904, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "476:201", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "4553706", + "DURATION-eng": "01:34:34.083000000", + "NUMBER_OF_BYTES-eng": "3229763407", + "NUMBER_OF_FRAMES-eng": "136178", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-07 22:10:41", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1904 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:34:34.144000000", + "NUMBER_OF_BYTES-eng": "272358912", + "NUMBER_OF_FRAMES-eng": "177317", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-07 22:10:41", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Romeo and Juliet (1996)/Romeo.And.Juliet.[1996].DVDRip.XviD-BLiTZKRiEG.avi": { + "format": { + "bit_rate": "848705", + "duration": "6918.960000", + "filename": "Romeo and Juliet (1996)/Romeo.And.Juliet.[1996].DVDRip.XviD-BLiTZKRiEG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734019584", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "720667", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6918.960000", + "duration_ts": 172974, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "172974", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115128", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6918.960000", + "duration_ts": 288290, + "index": 1, + "nb_frames": "288290", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Safety Not Guaranteed (2012)/7c19a1679ac1f63c71d154a6349d7e079277a669.mkv": { + "format": { + "bit_rate": "4971075", + "duration": "5147.104000", + "filename": "Safety Not Guaranteed (2012)/7c19a1679ac1f63c71d154a6349d7e079277a669.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "3198330314", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-09T06:33:21.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4499099", + "DURATION-eng": "01:25:47.101000000", + "NUMBER_OF_BYTES-eng": "2894665208", + "NUMBER_OF_FRAMES-eng": "123407", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.0.0 ('Interstellar') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-09 06:33:21", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:25:47.104000000", + "NUMBER_OF_BYTES-eng": "288237824", + "NUMBER_OF_FRAMES-eng": "160847", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.0.0 ('Interstellar') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-09 06:33:21", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5147.104000", + "duration_ts": 5147104, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44469", + "DURATION-eng": "01:21:15.537000000", + "NUMBER_OF_BYTES-eng": "27101350", + "NUMBER_OF_FRAMES-eng": "2206", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.0.0 ('Interstellar') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-09 06:33:21", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5147.104000", + "duration_ts": 5147104, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38195", + "DURATION-eng": "01:24:56.216000000", + "NUMBER_OF_BYTES-eng": "24331679", + "NUMBER_OF_FRAMES-eng": "2760", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.0.0 ('Interstellar') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-09 06:33:21", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5147.104000", + "duration_ts": 5147104, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "01:21:24.978000000", + "NUMBER_OF_BYTES-eng": "40963", + "NUMBER_OF_FRAMES-eng": "1081", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.0.0 ('Interstellar') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-09 06:33:21", + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Vice (2018)/b7daf8d2b098400db9458348ba999033.mkv": { + "format": { + "bit_rate": "3318000", + "duration": "7946.592000", + "filename": "Vice (2018)/b7daf8d2b098400db9458348ba999033.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3295849392", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-14T20:53:59.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2676063", + "DURATION-eng": "02:12:26.564000000", + "NUMBER_OF_BYTES-eng": "2658188910", + "NUMBER_OF_FRAMES-eng": "190527", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-14 20:53:59" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:12:26.592000000", + "NUMBER_OF_BYTES-eng": "635727360", + "NUMBER_OF_FRAMES-eng": "248331", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-14 20:53:59", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7946.592000", + "duration_ts": 7946592, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "81", + "DURATION-eng": "02:11:35.888000000", + "NUMBER_OF_BYTES-eng": "80488", + "NUMBER_OF_FRAMES-eng": "2513", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-14 20:53:59", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + } + ] + }, + "10 Cloverfield Lane (2016)/10 Cloverfield Lane 2016 1080p HDRip x264 AAC-JYK.mkv": { + "format": { + "bit_rate": "3804471", + "duration": "6210.370000", + "filename": "10 Cloverfield Lane (2016)/10 Cloverfield Lane 2016 1080p HDRip x264 AAC-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2953397031", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-05T07:03:50.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3549624", + "BPS-eng": "3549624", + "DURATION": "01:43:30.370000000", + "DURATION-eng": "01:43:30.370000000", + "NUMBER_OF_BYTES": "2755560464", + "NUMBER_OF_BYTES-eng": "2755560464", + "NUMBER_OF_FRAMES": "186125", + "NUMBER_OF_FRAMES-eng": "186125", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-05 07:03:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-05 07:03:50", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "252265", + "BPS-eng": "252265", + "DURATION": "01:43:30.346000000", + "DURATION-eng": "01:43:30.346000000", + "NUMBER_OF_BYTES": "195831989", + "NUMBER_OF_BYTES-eng": "195831989", + "NUMBER_OF_FRAMES": "291110", + "NUMBER_OF_FRAMES-eng": "291110", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-05 07:03:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-05 07:03:50", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Going In Style (2017)/going.in.style.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4425556", + "duration": "5784.032000", + "filename": "Going In Style (2017)/going.in.style.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3199695107", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-10T23:38:35.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 530, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "128:53", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 530, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Transformers The Last Knight (2017)/transformers the last knight.1080p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "5495916", + "duration": "9283.234000", + "filename": "Transformers The Last Knight (2017)/transformers the last knight.1080p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "6377484397", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-09-12T11:33:30.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1010, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "192:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1010, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Transformers.The.Last.Knight.2017.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + } + ] + }, + "King Kong/King Kong.avi": { + "format": { + "bit_rate": "1044548", + "duration": "11243.118118", + "filename": "King Kong/King Kong.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1467998342", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-0.6.14" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "843057", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 576, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "11243.118118", + "duration_ts": 269565, + "has_b_frames": 1, + "height": 240, + "index": 0, + "level": 5, + "nb_frames": "269565", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "269833728", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Time Bandits/Time Bandits KLAXXON.avi": { + "format": { + "bit_rate": "1253004", + "duration": "6457.040000", + "filename": "Time Bandits/Time Bandits KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1011337216", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "795342", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6457.040000", + "duration_ts": 161426, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "161426", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "361594240", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "The World's End (2013)/The.World's.End.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2149264", + "duration": "6547.605000", + "filename": "The World's End (2013)/The.World's.End.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1759066680", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-11-07T09:49:46.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2051437", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6547.499292", + "duration_ts": 157139983, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "156983", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-11-07T09:49:46.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93755", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6547.605333", + "duration_ts": 314285056, + "index": 1, + "max_bit_rate": "99352", + "nb_frames": "306919", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-07T09:50:03.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Insider (1999)/The Insider - 1999 DVDrip oddball.avi": { + "format": { + "bit_rate": "1058814", + "duration": "9092.000000", + "filename": "The Insider (1999)/The Insider - 1999 DVDrip oddball.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1203342848", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "857051", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 582, + "coded_width": 1024, + "display_aspect_ratio": "512:291", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9092.000000", + "duration_ts": 227300, + "has_b_frames": 1, + "height": 582, + "index": 0, + "level": 5, + "nb_frames": "227300", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 1024 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "218207409", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio Stream" + }, + "time_base": "1/24000" + } + ] + }, + "Despicable Me 2 (2013)/Despicable.Me.2.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2114692", + "duration": "5878.826667", + "filename": "Despicable Me 2 (2013)/Despicable.Me.2.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1553988533", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-10-18T12:35:54.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2016968", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5878.706167", + "duration_ts": 141088948, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "140948", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-10-18T12:35:54.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93645", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5878.826667", + "duration_ts": 282183680, + "index": 1, + "max_bit_rate": "103296", + "nb_frames": "275570", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-10-18T12:36:07.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Golden Compass/The.Golden.Compass[2007]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "866333", + "duration": "6797.839506", + "filename": "The Golden Compass/The.Golden.Compass[2007]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736149504", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "745025", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 258, + "coded_width": 632, + "display_aspect_ratio": "316:129", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6797.839506", + "duration_ts": 162985, + "has_b_frames": 1, + "height": 258, + "index": 0, + "level": 5, + "nb_frames": "162985", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 632 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "283241", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Predestination (2014)/Predestination.2014.720p.BRRIP.H264.AAC-MAJESTiC.mp4": { + "format": { + "bit_rate": "2949994", + "duration": "5868.903333", + "filename": "Predestination (2014)/Predestination.2014.720p.BRRIP.H264.AAC-MAJESTiC.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2164154002", + "start_time": "0.021333", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-11-23T22:06:21.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2504439", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5868.904708", + "duration_ts": 563414852, + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "140713", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-11-23T22:06:21.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "441551", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5868.885333", + "duration_ts": 281706496, + "index": 1, + "max_bit_rate": "708800", + "nb_frames": "275104", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 1024, + "start_time": "0.021333", + "tags": { + "creation_time": "2014-11-23T22:06:56.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Judah Friedlander America Is The Greatest Country In The United States (2017)/e55ddfd40ae8498593e0964769d32fdb.mp4": { + "format": { + "bit_rate": "2732536", + "duration": "5066.187000", + "filename": "Judah Friedlander America Is The Greatest Country In The United States (2017)/e55ddfd40ae8498593e0964769d32fdb.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1730442512", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "encoder": "Lavf57.82.100", + "major_brand": "isom", + "minor_version": "512" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "2499918", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "50/2997", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5066.066984", + "duration_ts": 60732011, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "151830", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/11988", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5066.144000", + "duration_ts": 243174912, + "index": 1, + "max_bit_rate": "224000", + "nb_frames": "237478", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SoundHandler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Sarah Silverman We Are Miracles (2013)/sarah.silverman.we.are.miracles.hdtv.x264-sys.mp4": { + "format": { + "bit_rate": "638035", + "duration": "3192.170000", + "filename": "Sarah Silverman We Are Miracles (2013)/sarah.silverman.we.are.miracles.hdtv.x264-sys.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "254589681", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2013-11-24T09:59:25.000000Z", + "encoder": "My MP4Box GUI 0.6.0.6 ", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "525363", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 406, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3192.063333", + "duration_ts": 76609520, + "has_b_frames": 2, + "height": 406, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "76533", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-24T09:55:56.000000Z", + "encoder": "AVC Coding", + "handler_name": "final.mp4", + "language": "und" + }, + "time_base": "1/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "108535", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3192.170667", + "duration_ts": 153224192, + "index": 1, + "max_bit_rate": "152888", + "nb_frames": "149633", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-24T09:59:26.000000Z", + "handler_name": "1 PID 014 3_2ch 48KHz 384Kbps DELAY 14ms.aac", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Nothing But Trouble/Nothing But Trouble.avi": { + "format": { + "bit_rate": "1134249", + "duration": "5598.515182", + "filename": "Nothing But Trouble/Nothing But Trouble.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "793763840", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "996811", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 432, + "coded_width": 600, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5598.515182", + "duration_ts": 134230, + "has_b_frames": 1, + "height": 432, + "index": 0, + "level": 5, + "nb_frames": "134230", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "24:25", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "89575644", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Big Hero 6 (2014)/8b8X17LChwvMV9hD1b.mkv": { + "format": { + "bit_rate": "14244848", + "duration": "6112.768000", + "filename": "Big Hero 6 (2014)/8b8X17LChwvMV9hD1b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "10884431431", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-06-20T20:14:16.000000Z", + "encoder": "libebml v0.7.9 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dum", + "title": "Flemish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6112.768000", + "duration_ts": 6112768, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6112.768000", + "duration_ts": 6112768, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "non-Dutch" + }, + "time_base": "1/1000" + } + ] + }, + "The Twilight Saga Breaking Dawn Part 2 (2012)/Breaking.Dawn.Part.2.2012.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1006343", + "duration": "6441.343333", + "filename": "The Twilight Saga Breaking Dawn Part 2 (2012)/Breaking.Dawn.Part.2.2012.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "810275627", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2013-02-20T20:37:50.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64523", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6441.344000", + "duration_ts": 309184512, + "index": 0, + "max_bit_rate": "71648", + "nb_frames": "301938", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-20T20:37:50.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "937910", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6441.268167", + "duration_ts": 154590436, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "154436", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-02-20T20:37:54.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Brazil/Brazil.avi": { + "format": { + "bit_rate": "1365851", + "duration": "8592.550884", + "filename": "Brazil/Brazil.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1467018846", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-0.6.14" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1166854", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8592.550884", + "duration_ts": 206015, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 3, + "nb_frames": "206015", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "206221221", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Super Troopers 2 (2018)/01edcff10b5244e4868bd7a92cc8abd6.mkv": { + "format": { + "bit_rate": "5522627", + "duration": "6005.330000", + "filename": "Super Troopers 2 (2018)/01edcff10b5244e4868bd7a92cc8abd6.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4145650006", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-07-03T04:10:21.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:39:31.392000000", + "DURATION-eng": "01:39:31.392000000", + "NUMBER_OF_BYTES": "286626816", + "NUMBER_OF_BYTES-eng": "286626816", + "NUMBER_OF_FRAMES": "186606", + "NUMBER_OF_FRAMES-eng": "186606", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-03 04:10:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-03 04:10:21", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1036, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 0, + "height": 1036, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS": "5138950", + "BPS-eng": "5138950", + "DURATION": "01:40:05.287000000", + "DURATION-eng": "01:40:05.287000000", + "NUMBER_OF_BYTES": "3857609434", + "NUMBER_OF_BYTES-eng": "3857609434", + "NUMBER_OF_FRAMES": "143984", + "NUMBER_OF_FRAMES-eng": "143984", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-03 04:10:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-03 04:10:21", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Tenacious D - The Pick Of Destiny (2006)/Tenacious.D-The.Pick.Of.Destiny[2006]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1040089", + "duration": "5646.813480", + "filename": "Tenacious D - The Pick Of Destiny (2006)/Tenacious.D-The.Pick.Of.Destiny[2006]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734148608", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "902786", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 600, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5646.813480", + "duration_ts": 135388, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "135388", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "235274", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Harry Potter And The Deathly Hallows Part 1 (2010)/ad264b52ab764bc68a1c2d5e9fd3b65e.mkv": { + "format": { + "bit_rate": "15396172", + "duration": "8765.280000", + "filename": "Harry Potter And The Deathly Hallows Part 1 (2010)/ad264b52ab764bc68a1c2d5e9fd3b65e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 14, + "probe_score": 100, + "size": "16868969814", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-06T12:32:18.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Harry Potter and the Deathly Hallows: Part 1 (2010) - UHD BluRay - 1080p HDR x265 - BMF" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 150, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "13832861", + "DURATION-eng": "02:26:05.257000000", + "NUMBER_OF_BYTES-eng": "15156073141", + "NUMBER_OF_FRAMES-eng": "210156", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1536000", + "DURATION-eng": "02:26:05.280000000", + "NUMBER_OF_BYTES-eng": "1682933760", + "NUMBER_OF_FRAMES-eng": "273915", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45", + "DURATION-eng": "02:11:27.546000000", + "NUMBER_OF_BYTES-eng": "45265", + "NUMBER_OF_FRAMES-eng": "1270", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51", + "DURATION-eng": "02:11:46.565000000", + "NUMBER_OF_BYTES-eng": "50707", + "NUMBER_OF_FRAMES-eng": "1445", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19933", + "DURATION-eng": "02:25:26.009000000", + "NUMBER_OF_BYTES-eng": "21742850", + "NUMBER_OF_FRAMES-eng": "2794", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "chi", + "title": "Traditional Mandarin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19948", + "DURATION-eng": "02:25:26.009000000", + "NUMBER_OF_BYTES-eng": "21758505", + "NUMBER_OF_FRAMES-eng": "2544", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36", + "DURATION-eng": "02:25:26.009000000", + "NUMBER_OF_BYTES-eng": "39809", + "NUMBER_OF_FRAMES-eng": "1224", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "02:11:27.421000000", + "NUMBER_OF_BYTES-eng": "38890", + "NUMBER_OF_FRAMES-eng": "1013", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34", + "DURATION-eng": "02:25:26.009000000", + "NUMBER_OF_BYTES-eng": "37257", + "NUMBER_OF_FRAMES-eng": "1351", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "02:11:27.671000000", + "NUMBER_OF_BYTES-eng": "38900", + "NUMBER_OF_FRAMES-eng": "1175", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34", + "DURATION-eng": "02:25:26.009000000", + "NUMBER_OF_BYTES-eng": "37194", + "NUMBER_OF_FRAMES-eng": "1182", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37", + "DURATION-eng": "02:25:25.936000000", + "NUMBER_OF_BYTES-eng": "41008", + "NUMBER_OF_FRAMES-eng": "1239", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37", + "DURATION-eng": "02:25:26.009000000", + "NUMBER_OF_BYTES-eng": "41303", + "NUMBER_OF_FRAMES-eng": "1362", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8765.280000", + "duration_ts": 8765280, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "02:11:27.588000000", + "NUMBER_OF_BYTES-eng": "38876", + "NUMBER_OF_FRAMES-eng": "989", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-06 12:32:18", + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "Score A Film Music Documentary (2016)/726f3bd4506f496784a4de1d8df8e61e.mkv": { + "format": { + "bit_rate": "6015427", + "duration": "5563.350000", + "filename": "Score A Film Music Documentary (2016)/726f3bd4506f496784a4de1d8df8e61e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4183240931", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-09-09T10:57:44.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5282487", + "DURATION-eng": "01:32:43.350000000", + "NUMBER_OF_BYTES-eng": "3673541198", + "NUMBER_OF_FRAMES-eng": "133387", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-09 10:57:44", + "language": "eng", + "title": "Score A Film Music Documentary 2016" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:32:42.656000000", + "NUMBER_OF_BYTES-eng": "445012480", + "NUMBER_OF_FRAMES-eng": "173833", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-09 10:57:44", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.350000", + "duration_ts": 5563350, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42181", + "DURATION-eng": "01:32:04.969000000", + "NUMBER_OF_BYTES-eng": "29131266", + "NUMBER_OF_FRAMES-eng": "1841", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-09 10:57:44", + "language": "chi", + "title": "CHS/SUP" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.350000", + "duration_ts": 5563350, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44733", + "DURATION-eng": "01:32:04.969000000", + "NUMBER_OF_BYTES-eng": "30893653", + "NUMBER_OF_FRAMES-eng": "1841", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-09 10:57:44", + "language": "chi", + "title": "CHT/SUP" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 2628, + "start_time": "2.628000", + "tags": { + "BPS-eng": "65323", + "DURATION-eng": "01:32:19.909000000", + "NUMBER_OF_BYTES-eng": "45236002", + "NUMBER_OF_FRAMES-eng": "2804", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-09 10:57:44", + "language": "eng", + "title": "ENG/SUP" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Red (2010)/Red.BluRay.1080p.x264.5.1.Judas.mp4": { + "format": { + "bit_rate": "2539618", + "duration": "6669.780000", + "filename": "Red (2010)/Red.BluRay.1080p.x264.5.1.Judas.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2117336754", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-01-30T07:01:41.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2230642", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6669.661667", + "duration_ts": 160071880, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "159912", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-30T07:01:41.000000Z", + "handler_name": "Video", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "83479", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6669.781333", + "duration_ts": 160074752, + "index": 1, + "max_bit_rate": "118936", + "nb_frames": "156323", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-30T07:01:51.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "221327", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6669.781333", + "duration_ts": 160074752, + "index": 2, + "max_bit_rate": "295432", + "nb_frames": "156323", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-30T07:01:55.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + } + ] + }, + "Network (1976)/Network {1976} by Mr. KickASS.mp4": { + "format": { + "bit_rate": "921833", + "duration": "7280.405000", + "filename": "Network (1976)/Network {1976} by Mr. KickASS.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "838915559", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-02-23T10:55:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "789714", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 712, + "coded_width": 1280, + "display_aspect_ratio": "160:89", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7280.314708", + "duration_ts": 174727553, + "has_b_frames": 2, + "height": 712, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "174553", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-02-23T10:55:15.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (build 1)", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127979", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7280.405333", + "duration_ts": 349459456, + "index": 1, + "max_bit_rate": "147416", + "nb_frames": "341269", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-02-23T10:58:46.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Searching for Bobby Fischer/Searching for Bobby Fischer.avi": { + "format": { + "bit_rate": "1286350", + "duration": "6601.017684", + "filename": "Searching for Bobby Fischer/Searching for Bobby Fischer.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1061402624", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1158700", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6601.017684", + "duration_ts": 158266, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "158266", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114944", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6601.008000", + "duration_ts": 275042, + "index": 1, + "nb_frames": "275042", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Expendables 2 (2012)/The.Expendables.2.2012.RC.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1123643", + "duration": "5439.871667", + "filename": "The Expendables 2 (2012)/The.Expendables.2.2012.RC.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "764059852", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-10-06T08:00:41.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64453", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5439.872000", + "duration_ts": 261113856, + "index": 0, + "max_bit_rate": "70544", + "nb_frames": "254994", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-10-06T08:00:41.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "25/1", + "bit_rate": "1055175", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5439.800000", + "duration_ts": 135995000, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "135995", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.080000", + "tags": { + "creation_time": "2012-10-06T08:00:44.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/25000", + "width": 1280 + } + ] + }, + "Deep Impact (1998)/Deep.Impact[1998]DivX[WS]DvDrip[Eng]AC3-Atlas47.avi": { + "format": { + "bit_rate": "843539", + "duration": "6979.880000", + "filename": "Deep Impact (1998)/Deep.Impact[1998]DivX[WS]DvDrip[Eng]AC3-Atlas47.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735975424", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "388729", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 176, + "coded_width": 416, + "display_aspect_ratio": "26:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6979.880000", + "duration_ts": 174497, + "has_b_frames": 1, + "height": 176, + "index": 0, + "level": -99, + "nb_frames": "174497", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 416 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "390819072", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Requiem For The American Dream (2015)/Requiem.For.The.American.Dream.2015.DOC.VOSTFR.WEBRip.x264-ABiTBOL.mkv": { + "format": { + "bit_rate": "759464", + "duration": "4368.874000", + "filename": "Requiem For The American Dream (2015)/Requiem.For.The.American.Dream.2015.DOC.VOSTFR.WEBRip.x264-ABiTBOL.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "414750462", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-12T12:50:30.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 398, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "360:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 398, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "662769", + "BPS-eng": "662769", + "DURATION": "01:12:48.516000000", + "DURATION-eng": "01:12:48.516000000", + "NUMBER_OF_BYTES": "361914727", + "NUMBER_OF_BYTES-eng": "361914727", + "NUMBER_OF_FRAMES": "104757", + "NUMBER_OF_FRAMES-eng": "104757", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-12 12:50:30", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-12 12:50:30" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "94379", + "BPS-eng": "94379", + "DURATION": "01:12:48.874000000", + "DURATION-eng": "01:12:48.874000000", + "NUMBER_OF_BYTES": "51541521", + "NUMBER_OF_BYTES-eng": "51541521", + "NUMBER_OF_FRAMES": "204791", + "NUMBER_OF_FRAMES-eng": "204791", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-12 12:50:30", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-12 12:50:30", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4368.874000", + "duration_ts": 4368874, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "107", + "BPS-eng": "107", + "DURATION": "01:09:34.087000000", + "DURATION-eng": "01:09:34.087000000", + "NUMBER_OF_BYTES": "55969", + "NUMBER_OF_BYTES-eng": "55969", + "NUMBER_OF_FRAMES": "1032", + "NUMBER_OF_FRAMES-eng": "1032", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-12 12:50:30", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-12 12:50:30", + "language": "fre" + }, + "time_base": "1/1000" + } + ] + }, + "Fantasia 2000 (1999)/flame-fantasia.2000.1999.720p.proper.bluray.x264.mkv": { + "format": { + "bit_rate": "6299768", + "duration": "4472.726000", + "filename": "Fantasia 2000 (1999)/flame-fantasia.2000.1999.720p.proper.bluray.x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3522142267", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-02T08:49:58.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4788424", + "BPS-eng": "4788424", + "DURATION": "01:14:32.719000000", + "DURATION-eng": "01:14:32.719000000", + "NUMBER_OF_BYTES": "2677159829", + "NUMBER_OF_BYTES-eng": "2677159829", + "NUMBER_OF_FRAMES": "107238", + "NUMBER_OF_FRAMES-eng": "107238", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-02 08:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-02 08:49:58", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509003", + "BPS-eng": "1509003", + "DURATION": "01:14:32.726000000", + "DURATION-eng": "01:14:32.726000000", + "NUMBER_OF_BYTES": "843669820", + "NUMBER_OF_BYTES-eng": "843669820", + "NUMBER_OF_FRAMES": "419318", + "NUMBER_OF_FRAMES-eng": "419318", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-02 08:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-02 08:49:58", + "language": "eng", + "title": "English DTS 1509 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4472.726000", + "duration_ts": 4472726, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12", + "BPS-eng": "12", + "DURATION": "01:14:20.371000000", + "DURATION-eng": "01:14:20.371000000", + "NUMBER_OF_BYTES": "6767", + "NUMBER_OF_BYTES-eng": "6767", + "NUMBER_OF_FRAMES": "162", + "NUMBER_OF_FRAMES-eng": "162", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-02 08:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-02 08:49:58", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4472.726000", + "duration_ts": 4472726, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9", + "BPS-eng": "9", + "DURATION": "01:14:20.246000000", + "DURATION-eng": "01:14:20.246000000", + "NUMBER_OF_BYTES": "5182", + "NUMBER_OF_BYTES-eng": "5182", + "NUMBER_OF_FRAMES": "131", + "NUMBER_OF_FRAMES-eng": "131", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-02 08:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-02 08:49:58", + "language": "pol" + }, + "time_base": "1/1000" + } + ] + }, + "IMAX Hubble (2010)/IMAX.Hubble.2010.Bluray.1080p.DTS.x264-CHD.mkv": { + "format": { + "bit_rate": "14156899", + "duration": "2639.659000", + "filename": "IMAX Hubble (2010)/IMAX.Hubble.2010.Bluray.1080p.DTS.x264-CHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4671173330", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-04-10T17:41:35.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0", + "title": "IMAX 哈勃望远镜 by 任骞" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "IMAX.Hubble.2010.Bluray.1080p.DTS.x264-CHD" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS 5.1 1509K 24bit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2639.659000", + "duration_ts": 2639659, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Ghost In The Shell (2017)/ghost.in.the.shell.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4435803", + "duration": "6432.509000", + "filename": "Ghost In The Shell (2017)/ghost.in.the.shell.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3566668476", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-05T23:49:02.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Men in Black (1997)/Men.in.Black[1997]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1042713", + "duration": "5640.960000", + "filename": "Men in Black (1997)/Men.in.Black[1997]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735238144", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "905009", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 628, + "display_aspect_ratio": "157:84", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5640.960000", + "duration_ts": 141024, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "141024", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 628 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "235040", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Deja Vu/Deja Vu.avi": { + "format": { + "bit_rate": "776020", + "duration": "7583.375042", + "filename": "Deja Vu/Deja Vu.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735606784", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "670712", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 576, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7583.375042", + "duration_ts": 181819, + "has_b_frames": 1, + "height": 240, + "index": 0, + "level": 5, + "nb_frames": "181819", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "315974", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Gruffalo (2009)/BBC-HD The Gruffalo x264 AC3 5.1 [DD] 1080.mkv": { + "format": { + "bit_rate": "5764267", + "duration": "1594.515000", + "filename": "The Gruffalo (2009)/BBC-HD The Gruffalo x264 AC3 5.1 [DD] 1080.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1148901338", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-12-26T10:04:49.000000Z", + "encoder": "libebml v1.2.2 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "tt", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1035, + "start_time": "1.035000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Ibiza The Silent Movie (2019)/642dd2f1655c4a7a8137a2b451a302f5.mkv": { + "format": { + "bit_rate": "5511978", + "duration": "5467.541000", + "filename": "Ibiza The Silent Movie (2019)/642dd2f1655c4a7a8137a2b451a302f5.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3767120757", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 3, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 160, + "start_time": "0.160000", + "tags": { + "DURATION": "01:31:07.480000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:31:07.541000000" + }, + "time_base": "1/1000" + } + ] + }, + "Shallow Hal/Shallow Hal.avi": { + "format": { + "bit_rate": "1106521", + "duration": "6825.075075", + "filename": "Shallow Hal/Shallow Hal.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "944011264", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "979626", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 656, + "display_aspect_ratio": "41:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6825.075075", + "duration_ts": 163638, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "163638", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114192", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6825.024000", + "duration_ts": 284376, + "index": 1, + "nb_frames": "284376", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Boondock Saints (1999)/5902dbd1e07a46ba93d7fe8538b2ebd9.mkv": { + "format": { + "bit_rate": "5514791", + "duration": "7019.471000", + "filename": "The Boondock Saints (1999)/5902dbd1e07a46ba93d7fe8538b2ebd9.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4838865263", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-12T22:04:25.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "960:407", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 814, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5000136", + "DURATION-eng": "01:56:59.471000000", + "NUMBER_OF_BYTES-eng": "4387288960", + "NUMBER_OF_FRAMES-eng": "168299", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-12 22:04:25" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "383052", + "DURATION-eng": "01:56:59.413000000", + "NUMBER_OF_BYTES-eng": "336100491", + "NUMBER_OF_FRAMES-eng": "329035", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-12 22:04:25", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS-eng": "65840", + "DURATION-eng": "01:48:25.515000000", + "NUMBER_OF_BYTES-eng": "53541016", + "NUMBER_OF_FRAMES-eng": "152473", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-12 22:04:25", + "language": "eng", + "title": "Commentary 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS-eng": "65843", + "DURATION-eng": "01:48:25.515000000", + "NUMBER_OF_BYTES-eng": "53542905", + "NUMBER_OF_FRAMES-eng": "152473", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-12 22:04:25", + "language": "eng", + "title": "Commentary 2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7019.471000", + "duration_ts": 7019471, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "11566", + "DURATION-eng": "01:45:11.924000000", + "NUMBER_OF_BYTES-eng": "9125737", + "NUMBER_OF_FRAMES-eng": "1477", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-12 22:04:25", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Deadpool 2 (2018)/3830a6359e2f400db3ae5bd4b0746ab3.mkv": { + "format": { + "bit_rate": "10147887", + "duration": "7161.184000", + "filename": "Deadpool 2 (2018)/3830a6359e2f400db3ae5bd4b0746ab3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "9083861410", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-07T08:04:19.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9889773", + "DURATION-eng": "01:59:21.154000000", + "NUMBER_OF_BYTES-eng": "8852774041", + "NUMBER_OF_FRAMES-eng": "171696", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-07 08:04:19", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "256000", + "DURATION-eng": "01:59:21.184000000", + "NUMBER_OF_BYTES-eng": "229157888", + "NUMBER_OF_FRAMES-eng": "223787", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-07 08:04:19", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7161.184000", + "duration_ts": 7161184, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:58:39.983000000", + "NUMBER_OF_BYTES-eng": "60734", + "NUMBER_OF_FRAMES-eng": "2153", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-07 08:04:19", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Kubo And The Two Strings (2016)/Kubo.and.the.Two.Strings.2016.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "6217199", + "duration": "6096.213000", + "filename": "Kubo And The Two Strings (2016)/Kubo.and.the.Two.Strings.2016.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4737671721", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "8128:3417", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "254:255", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:41:36.174000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:41:36.213000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "10 Things I Hate About You (1999)/799d096dd13c45239bda98a6d285cf2c.mkv": { + "format": { + "bit_rate": "18246159", + "duration": "5856.458000", + "filename": "10 Things I Hate About You (1999)/799d096dd13c45239bda98a6d285cf2c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 14, + "probe_score": 100, + "size": "13357233197", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-12-06T05:30:26.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17542592", + "BPS-eng": "17542592", + "DURATION": "01:37:36.393000000", + "DURATION-eng": "01:37:36.393000000", + "NUMBER_OF_BYTES": "12842039341", + "NUMBER_OF_BYTES-eng": "12842039341", + "NUMBER_OF_FRAMES": "140413", + "NUMBER_OF_FRAMES-eng": "140413", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:37:36.416000000", + "DURATION-eng": "01:37:36.416000000", + "NUMBER_OF_BYTES": "468513280", + "NUMBER_OF_BYTES-eng": "468513280", + "NUMBER_OF_FRAMES": "183013", + "NUMBER_OF_FRAMES-eng": "183013", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "59237", + "BPS-eng": "59237", + "DURATION": "01:37:36.427000000", + "DURATION-eng": "01:37:36.427000000", + "NUMBER_OF_BYTES": "43364816", + "NUMBER_OF_BYTES-eng": "43364816", + "NUMBER_OF_FRAMES": "137260", + "NUMBER_OF_FRAMES-eng": "137260", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "eng", + "title": "Commentary by various cast members" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "61", + "BPS-eng": "61", + "DURATION": "01:35:24.302000000", + "DURATION-eng": "01:35:24.302000000", + "NUMBER_OF_BYTES": "44278", + "NUMBER_OF_BYTES-eng": "44278", + "NUMBER_OF_FRAMES": "1192", + "NUMBER_OF_FRAMES-eng": "1192", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:36:49.262000000", + "DURATION-eng": "01:36:49.262000000", + "NUMBER_OF_BYTES": "43405", + "NUMBER_OF_BYTES-eng": "43405", + "NUMBER_OF_FRAMES": "1177", + "NUMBER_OF_FRAMES-eng": "1177", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "01:35:30.099000000", + "DURATION-eng": "01:35:30.099000000", + "NUMBER_OF_BYTES": "45580", + "NUMBER_OF_BYTES-eng": "45580", + "NUMBER_OF_FRAMES": "1209", + "NUMBER_OF_FRAMES-eng": "1209", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "01:36:49.262000000", + "DURATION-eng": "01:36:49.262000000", + "NUMBER_OF_BYTES": "40019", + "NUMBER_OF_BYTES-eng": "40019", + "NUMBER_OF_FRAMES": "1161", + "NUMBER_OF_FRAMES-eng": "1161", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "01:36:49.470000000", + "DURATION-eng": "01:36:49.470000000", + "NUMBER_OF_BYTES": "40205", + "NUMBER_OF_BYTES-eng": "40205", + "NUMBER_OF_FRAMES": "1214", + "NUMBER_OF_FRAMES-eng": "1214", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "76", + "BPS-eng": "76", + "DURATION": "01:37:15.538000000", + "DURATION-eng": "01:37:15.538000000", + "NUMBER_OF_BYTES": "55727", + "NUMBER_OF_BYTES-eng": "55727", + "NUMBER_OF_FRAMES": "1541", + "NUMBER_OF_FRAMES-eng": "1541", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "172", + "BPS-eng": "172", + "DURATION": "01:37:29.469000000", + "DURATION-eng": "01:37:29.469000000", + "NUMBER_OF_BYTES": "126415", + "NUMBER_OF_BYTES-eng": "126415", + "NUMBER_OF_FRAMES": "2252", + "NUMBER_OF_FRAMES-eng": "2252", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "eng", + "title": "Commentary by various cast members" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "132", + "BPS-eng": "132", + "DURATION": "01:37:29.469000000", + "DURATION-eng": "01:37:29.469000000", + "NUMBER_OF_BYTES": "97048", + "NUMBER_OF_BYTES-eng": "97048", + "NUMBER_OF_FRAMES": "2043", + "NUMBER_OF_FRAMES-eng": "2043", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "spa", + "title": "Commentary by various cast members" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "136", + "BPS-eng": "136", + "DURATION": "01:37:29.469000000", + "DURATION-eng": "01:37:29.469000000", + "NUMBER_OF_BYTES": "99821", + "NUMBER_OF_BYTES-eng": "99821", + "NUMBER_OF_FRAMES": "2040", + "NUMBER_OF_FRAMES-eng": "2040", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "fre", + "title": "Commentary by various cast members" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "136", + "BPS-eng": "136", + "DURATION": "01:37:29.469000000", + "DURATION-eng": "01:37:29.469000000", + "NUMBER_OF_BYTES": "99555", + "NUMBER_OF_BYTES-eng": "99555", + "NUMBER_OF_FRAMES": "2045", + "NUMBER_OF_FRAMES-eng": "2045", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "por", + "title": "Commentary by various cast members" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5856.458000", + "duration_ts": 5856458, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "136", + "BPS-eng": "136", + "DURATION": "01:37:29.469000000", + "DURATION-eng": "01:37:29.469000000", + "NUMBER_OF_BYTES": "99655", + "NUMBER_OF_BYTES-eng": "99655", + "NUMBER_OF_FRAMES": "2044", + "NUMBER_OF_FRAMES-eng": "2044", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-06 05:30:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-06 05:30:26", + "language": "rum", + "title": "Commentary by various cast members" + }, + "time_base": "1/1000" + } + ] + }, + "Harry Potter And The Half-Blood Prince (2009)/035a12d325614aaa96302cffe0b26505.mkv": { + "format": { + "bit_rate": "14824538", + "duration": "9210.752000", + "filename": "Harry Potter And The Half-Blood Prince (2009)/035a12d325614aaa96302cffe0b26505.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 21, + "probe_score": 100, + "size": "17068143358", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-24T08:01:04.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "13108564", + "DURATION-eng": "02:33:30.743000000", + "NUMBER_OF_BYTES-eng": "15092451976", + "NUMBER_OF_FRAMES-eng": "220837", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1509000", + "DURATION-eng": "02:33:30.752000000", + "NUMBER_OF_BYTES-eng": "1737378096", + "NUMBER_OF_FRAMES-eng": "863508", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "eng", + "title": "English DTS 5.1 @ 1509kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28085", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "32250465", + "NUMBER_OF_FRAMES-eng": "3042", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27478", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "31554480", + "NUMBER_OF_FRAMES-eng": "2832", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33119", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "38032037", + "NUMBER_OF_FRAMES-eng": "3228", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "ger", + "title": "German (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27376", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "31436842", + "NUMBER_OF_FRAMES-eng": "3092", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "ita", + "title": "Italian (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "25612", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "29411759", + "NUMBER_OF_FRAMES-eng": "3132", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "spa", + "title": "Castilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21445", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "24626699", + "NUMBER_OF_FRAMES-eng": "2250", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22385", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "25705664", + "NUMBER_OF_FRAMES-eng": "2936", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21656", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "24868351", + "NUMBER_OF_FRAMES-eng": "2894", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15631", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "17949402", + "NUMBER_OF_FRAMES-eng": "2872", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "kor", + "title": "Korean" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24274", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "27875042", + "NUMBER_OF_FRAMES-eng": "2900", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "spa", + "title": "Latin American" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "25960", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "29810743", + "NUMBER_OF_FRAMES-eng": "2896", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14636", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "16807112", + "NUMBER_OF_FRAMES-eng": "2894", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "ara", + "title": "Arabic" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22529", + "DURATION-eng": "02:33:06.552000000", + "NUMBER_OF_BYTES-eng": "25870553", + "NUMBER_OF_FRAMES-eng": "2868", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "cze", + "title": "Czech" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22607", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "25960702", + "NUMBER_OF_FRAMES-eng": "2110", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21541", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "24735954", + "NUMBER_OF_FRAMES-eng": "2246", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23543", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "27034851", + "NUMBER_OF_FRAMES-eng": "2692", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24670", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "28328955", + "NUMBER_OF_FRAMES-eng": "2908", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21104", + "DURATION-eng": "02:33:06.510000000", + "NUMBER_OF_BYTES-eng": "24235082", + "NUMBER_OF_FRAMES-eng": "2130", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9210.752000", + "duration_ts": 9210752, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19409", + "DURATION-eng": "02:32:51.788000000", + "NUMBER_OF_BYTES-eng": "22252622", + "NUMBER_OF_FRAMES-eng": "3352", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-24 08:01:04", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + } + ] + }, + "Where the Wild Things Are (2009)/Where The Wild Things Are.mp4": { + "format": { + "bit_rate": "2103058", + "duration": "6062.953333", + "filename": "Where the Wild Things Are (2009)/Where The Wild Things Are.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1593843289", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2010-02-21T00:40:52.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "1818753", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "104271/5000000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6061.982273", + "duration_ts": 30309911364, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "145342", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 208542, + "start_time": "0.041708", + "tags": { + "creation_time": "2010-02-20T15:44:31.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/5000000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "280936", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6062.954667", + "duration_ts": 291021824, + "index": 1, + "max_bit_rate": "348776", + "nb_frames": "284201", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-02-21T00:42:54.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Right Stuff (1983)/The.Right.Stuff.1983.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "2616584", + "duration": "11563.840000", + "filename": "The Right Stuff (1983)/The.Right.Stuff.1983.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3782221152", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-01-26T21:45:31.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2109863", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11563.635417", + "duration_ts": 277527250, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "277250", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2014-01-26T21:45:31.000000Z", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "377089", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11563.840000", + "duration_ts": 555064320, + "index": 1, + "max_bit_rate": "438152", + "nb_frames": "542055", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-01-26T11:06:12.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124303", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11563.840000", + "duration_ts": 555064320, + "index": 2, + "max_bit_rate": "144440", + "nb_frames": "542055", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-01-26T11:41:22.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Predator 2/Predator 2.avi": { + "format": { + "bit_rate": "1165415", + "duration": "6480.072000", + "filename": "Predator 2/Predator 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943996928", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1036369", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6480.063397", + "duration_ts": 155366, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "155366", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116344", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6480.072000", + "duration_ts": 270003, + "index": 1, + "nb_frames": "270003", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Comedy Central Roast Of Alec Baldwin (2019)/bada4f409c694d44886a0bbde0ba6a8b.mkv": { + "format": { + "bit_rate": "5018847", + "duration": "5039.419000", + "filename": "The Comedy Central Roast Of Alec Baldwin (2019)/bada4f409c694d44886a0bbde0ba6a8b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3161509344", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-16T07:34:14.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 33, + "start_time": "0.033000", + "tags": { + "BPS-eng": "4888189", + "DURATION-eng": "01:23:59.386000000", + "NUMBER_OF_BYTES-eng": "3079184353", + "NUMBER_OF_FRAMES-eng": "151031", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-16 07:34:14" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "128004", + "DURATION-eng": "01:23:59.381000000", + "NUMBER_OF_BYTES-eng": "80632740", + "NUMBER_OF_FRAMES-eng": "236221", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-16 07:34:14" + }, + "time_base": "1/1000" + } + ] + }, + "Coming to America/Coming to America - xvid.avi": { + "format": { + "bit_rate": "838381", + "duration": "7007.716049", + "filename": "Coming to America/Coming to America - xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734392320", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "698229", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 480, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7007.716049", + "duration_ts": 168017, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 3, + "nb_frames": "168017", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 480 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127440", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7007.712000", + "duration_ts": 291988, + "index": 1, + "nb_frames": "291988", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Burn After Reading (2008)/Burn.After.Reading[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1023098", + "duration": "5749.124124", + "filename": "Burn After Reading (2008)/Burn.After.Reading[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735240192", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "885788", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 322, + "coded_width": 616, + "display_aspect_ratio": "44:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5749.124124", + "duration_ts": 137841, + "has_b_frames": 1, + "height": 322, + "index": 0, + "level": 5, + "nb_frames": "137841", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 616 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "239547", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Alien (1979)/Alien.1979.Directors.Cut.iNTERNAL.CRF.720p.BluRay.x264-MOOVEE.mkv": { + "format": { + "bit_rate": "4002995", + "duration": "6997.616000", + "filename": "Alien (1979)/Alien.1979.Directors.Cut.iNTERNAL.CRF.720p.BluRay.x264-MOOVEE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3501427971", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-10-08T13:26:33.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6997.616000", + "duration_ts": 6997616, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "The Goonies (1985)/h-goonies-x264.720.mkv": { + "format": { + "bit_rate": "3525306", + "duration": "6835.360000", + "filename": "The Goonies (1985)/h-goonies-x264.720.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3012092224", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:53:55.256000000", + "ENCODER": "Lavc57.64.101 libx264", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:53:55.360000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Battle Of The Sexes (2017)/Battle.of.the.Sexes.2017.720p.WEB-DL.H264.AC3-EVO.mkv": { + "format": { + "bit_rate": "4462896", + "duration": "7324.324000", + "filename": "Battle Of The Sexes (2017)/Battle.of.the.Sexes.2017.720p.WEB-DL.H264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4085962754", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-19T07:16:44.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Resident Evil Extinction (2007)/Resident.Evil.Extinction.2007.720p.nHD.x264.NhaNc3.mkv": { + "format": { + "bit_rate": "2897817", + "duration": "5645.983000", + "filename": "Resident Evil Extinction (2007)/Resident.Evil.Extinction.2007.720p.nHD.x264.NhaNc3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2045128224", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-12-25T07:27:12.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Resident.Evil.Extinction.2007.720p.nHD.x264.NhaNc3 by NADSc0m Visit us at -:nhanc3.invisioni.com:-" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1024, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "5:4", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Resident.Evil.Extinction.2007.720p.nHD.x264.NhaNc3" + }, + "time_base": "1/1000", + "width": 1024 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Resident.Evil.Extinction.2007.720p.nHD.x264.NhaNc3" + }, + "time_base": "1/1000" + } + ] + }, + "I Kill Giants (2018)/I Kill Giants 2018 1080p WEB-DL 6CH MkvCage.mkv": { + "format": { + "bit_rate": "2389724", + "duration": "6390.218000", + "filename": "I Kill Giants (2018)/I Kill Giants 2018 1080p WEB-DL 6CH MkvCage.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1908857653", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-23T08:22:49.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "I.Kill.Giants.2018.1080p.WEB-DL.6CH.MkvCage" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS-eng": "191789", + "DURATION-eng": "01:46:30.187000000", + "NUMBER_OF_BYTES-eng": "153195988", + "NUMBER_OF_FRAMES-eng": "149770", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-23 08:22:49", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1912, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "239:100", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2196114", + "DURATION-eng": "01:46:30.134000000", + "NUMBER_OF_BYTES-eng": "1754182847", + "NUMBER_OF_FRAMES-eng": "153210", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-23 08:22:49" + }, + "time_base": "1/1000", + "width": 1912 + } + ] + }, + "Aquaman (2018)/1c5d72c981bd44818e39946085d82593.mkv": { + "format": { + "bit_rate": "5719176", + "duration": "8599.232000", + "filename": "Aquaman (2018)/1c5d72c981bd44818e39946085d82593.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "6147565196", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-05T00:30:13.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "5333331", + "DURATION-eng": "02:23:19.174000000", + "NUMBER_OF_BYTES-eng": "5732781098", + "NUMBER_OF_FRAMES-eng": "206174", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-05 00:30:13", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:23:19.232000000", + "NUMBER_OF_BYTES-eng": "412763136", + "NUMBER_OF_FRAMES-eng": "268726", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-05 00:30:13", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Hail Caesar (2016)/Hail.Caesar.2016.720p.BluRay.DD5.1.x264-VietHD.mkv": { + "format": { + "bit_rate": "9610762", + "duration": "6365.920000", + "filename": "Hail Caesar (2016)/Hail.Caesar.2016.720p.BluRay.DD5.1.x264-VietHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "7647667763", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-29T07:28:44.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:46:05.920000000", + "DURATION-eng": "01:46:05.920000000", + "NUMBER_OF_BYTES": "509273600", + "NUMBER_OF_BYTES-eng": "509273600", + "NUMBER_OF_FRAMES": "198935", + "NUMBER_OF_FRAMES-eng": "198935", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6365.920000", + "duration_ts": 6365920, + "index": 1, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:44:22.886000000", + "DURATION-eng": "01:44:22.886000000", + "NUMBER_OF_BYTES": "61395", + "NUMBER_OF_BYTES-eng": "61395", + "NUMBER_OF_FRAMES": "1787", + "NUMBER_OF_FRAMES-eng": "1787", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6365.920000", + "duration_ts": 6365920, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "79", + "BPS-eng": "79", + "DURATION": "01:38:12.761000000", + "DURATION-eng": "01:38:12.761000000", + "NUMBER_OF_BYTES": "58367", + "NUMBER_OF_BYTES-eng": "58367", + "NUMBER_OF_FRAMES": "1666", + "NUMBER_OF_FRAMES-eng": "1666", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6365.920000", + "duration_ts": 6365920, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "75", + "BPS-eng": "75", + "DURATION": "01:44:59.919000000", + "DURATION-eng": "01:44:59.919000000", + "NUMBER_OF_BYTES": "59192", + "NUMBER_OF_BYTES-eng": "59192", + "NUMBER_OF_FRAMES": "1590", + "NUMBER_OF_FRAMES-eng": "1590", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6365.920000", + "duration_ts": 6365920, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "92", + "BPS-eng": "92", + "DURATION": "01:38:33.934000000", + "DURATION-eng": "01:38:33.934000000", + "NUMBER_OF_BYTES": "68503", + "NUMBER_OF_BYTES-eng": "68503", + "NUMBER_OF_FRAMES": "1831", + "NUMBER_OF_FRAMES-eng": "1831", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 692, + "index": 5, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8968013", + "BPS-eng": "8968013", + "DURATION": "01:46:05.902000000", + "DURATION-eng": "01:46:05.902000000", + "NUMBER_OF_BYTES": "7136186873", + "NUMBER_OF_BYTES-eng": "7136186873", + "NUMBER_OF_FRAMES": "152629", + "NUMBER_OF_FRAMES-eng": "152629", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "96", + "BPS-eng": "96", + "DURATION": "01:39:29.100000000", + "DURATION-eng": "01:39:29.100000000", + "NUMBER_OF_BYTES": "71744", + "NUMBER_OF_BYTES-eng": "71744", + "NUMBER_OF_FRAMES": "1474", + "NUMBER_OF_FRAMES-eng": "1474", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.7.0 ('All of the above') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-29 07:28:44", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-29 07:28:44", + "language": "vie" + }, + "time_base": "1/1000" + } + ] + }, + "Hunt For The Wilderpeople (2016)/HUNT FOR THE WILDERPEOPLE (2016) x264 720p Bluray DTS-HD.MA.5.1 NLSubs -QoQ-.mkv": { + "format": { + "bit_rate": "6783990", + "duration": "6058.250000", + "filename": "Hunt For The Wilderpeople (2016)/HUNT FOR THE WILDERPEOPLE (2016) x264 720p Bluray DTS-HD.MA.5.1 NLSubs -QoQ-.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5137388799", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:40:58.250000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:40:58.249000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6058.250000", + "duration_ts": 6058250, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:36:21.905000000", + "language": "dut", + "title": "QoQ-Team" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6058.250000", + "duration_ts": 6058250, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:39:54.292000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Slaughterhouse-Five (1972)/Slaughterhouse-Five.1972.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "9080265", + "duration": "6201.824000", + "filename": "Slaughterhouse-Five (1972)/Slaughterhouse-Five.1972.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7039275797", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 696, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7568881", + "BPS-eng": "7568881", + "DURATION": "01:43:21.821000000", + "DURATION-eng": "01:43:21.821000000", + "NUMBER_OF_BYTES": "5867606203", + "NUMBER_OF_BYTES-eng": "5867606203", + "NUMBER_OF_FRAMES": "148695", + "NUMBER_OF_FRAMES-eng": "148695", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:43:21.824000000", + "DURATION-eng": "01:43:21.824000000", + "NUMBER_OF_BYTES": "1169819052", + "NUMBER_OF_BYTES-eng": "1169819052", + "NUMBER_OF_FRAMES": "581421", + "NUMBER_OF_FRAMES-eng": "581421", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Party Central (2013)/e4604d0b0e0c468aa293229230a6c7e2.mkv": { + "format": { + "bit_rate": "29678295", + "duration": "333.792000", + "filename": "Party Central (2013)/e4604d0b0e0c468aa293229230a6c7e2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 14, + "probe_score": 100, + "size": "1238297197", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-28T01:35:38.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 4, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23847890", + "DURATION-eng": "00:05:33.792000000", + "NUMBER_OF_BYTES-eng": "995029381", + "NUMBER_OF_FRAMES-eng": "8003", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "title": "MPEG-4 AVC Video / 24088 kbps / 1080p / 23.976 fps / 16:9 / High Profile 4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5330208", + "DURATION-eng": "00:05:33.792000000", + "NUMBER_OF_BYTES-eng": "222397636", + "NUMBER_OF_FRAMES-eng": "31293", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "eng", + "title": "DTS-HD Master Audio / 7.1 / 48 kHz / 5330 kbps / 24-bit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "320000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "320000", + "DURATION-eng": "00:05:33.792000000", + "NUMBER_OF_BYTES-eng": "13351680", + "NUMBER_OF_FRAMES-eng": "10431", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "eng", + "title": "Commentary by director/writer Kelsey Mann / Dolby Digital Audio / 2.0 / 48 kHz / 320 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33429", + "DURATION-eng": "00:05:17.276000000", + "NUMBER_OF_BYTES-eng": "1325787", + "NUMBER_OF_FRAMES-eng": "120", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "89218", + "DURATION-eng": "00:05:22.280000000", + "NUMBER_OF_BYTES-eng": "3594177", + "NUMBER_OF_FRAMES-eng": "266", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "eng", + "title": "Commentary by director/writer Kelsey Mann" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32022", + "DURATION-eng": "00:05:21.321000000", + "NUMBER_OF_BYTES-eng": "1286206", + "NUMBER_OF_FRAMES-eng": "128", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "83166", + "DURATION-eng": "00:05:22.280000000", + "NUMBER_OF_BYTES-eng": "3350352", + "NUMBER_OF_FRAMES-eng": "266", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "por", + "title": "Commentary by director/writer Kelsey Mann" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21038", + "DURATION-eng": "00:05:21.321000000", + "NUMBER_OF_BYTES-eng": "845004", + "NUMBER_OF_FRAMES-eng": "128", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46489", + "DURATION-eng": "00:05:22.280000000", + "NUMBER_OF_BYTES-eng": "1872824", + "NUMBER_OF_FRAMES-eng": "266", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "kor", + "title": "Commentary by director/writer Kelsey Mann" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34176", + "DURATION-eng": "00:05:21.321000000", + "NUMBER_OF_BYTES-eng": "1372699", + "NUMBER_OF_FRAMES-eng": "128", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "85150", + "DURATION-eng": "00:05:22.280000000", + "NUMBER_OF_BYTES-eng": "3430292", + "NUMBER_OF_FRAMES-eng": "266", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "rus", + "title": "Commentary by director/writer Kelsey Mann" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23271", + "DURATION-eng": "00:05:21.321000000", + "NUMBER_OF_BYTES-eng": "934712", + "NUMBER_OF_FRAMES-eng": "128", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23658", + "DURATION-eng": "00:05:21.321000000", + "NUMBER_OF_BYTES-eng": "950255", + "NUMBER_OF_FRAMES-eng": "128", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "333.792000", + "duration_ts": 333792, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56504", + "DURATION-eng": "00:05:22.280000000", + "NUMBER_OF_BYTES-eng": "2276285", + "NUMBER_OF_FRAMES-eng": "266", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-28 01:35:38", + "language": "chi", + "title": "Commentary by director/writer Kelsey Mann" + }, + "time_base": "1/1000" + } + ] + }, + "The Goods Live Hard Sell Hard (2009)/The Goods Live Hard Sell Hard (2009) DvdRip [Xvid]{1337x}-X.avi": { + "format": { + "bit_rate": "1145679", + "duration": "5129.568000", + "filename": "The Goods Live Hard Sell Hard (2009)/The Goods Live Hard Sell Hard (2009) DvdRip [Xvid]{1337x}-X.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734605312", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1030119", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5129.560000", + "duration_ts": 128239, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "128239", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "102688", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5129.568000", + "duration_ts": 213732, + "index": 1, + "nb_frames": "213732", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Captain Marvel (2019)/Captain.Marvel.2019.Digital.Extras.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv": { + "format": { + "bit_rate": "9711836", + "duration": "2934.938000", + "filename": "Captain Marvel (2019)/Captain.Marvel.2019.Digital.Extras.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3562954614", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-29T02:39:49.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9453503", + "DURATION-eng": "00:48:54.932000000", + "NUMBER_OF_BYTES-eng": "3468173844", + "NUMBER_OF_FRAMES-eng": "70368", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-29 02:39:49", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 26, + "start_time": "0.026000", + "tags": { + "BPS-eng": "256000", + "DURATION-eng": "00:48:54.912000000", + "NUMBER_OF_BYTES-eng": "93917184", + "NUMBER_OF_FRAMES-eng": "91716", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-29 02:39:49", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2934.938000", + "duration_ts": 2934938, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "93", + "DURATION-eng": "00:48:37.349000000", + "NUMBER_OF_BYTES-eng": "34091", + "NUMBER_OF_FRAMES-eng": "893", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-29 02:39:49", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2934.938000", + "duration_ts": 2934938, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "93", + "DURATION-eng": "00:48:37.349000000", + "NUMBER_OF_BYTES-eng": "34091", + "NUMBER_OF_FRAMES-eng": "893", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-29 02:39:49", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "I Am Sam Kinison (2017)/e7ada85293ea463c97c965928cd777b4.mkv": { + "format": { + "bit_rate": "732291", + "duration": "5834.580000", + "filename": "I Am Sam Kinison (2017)/e7ada85293ea463c97c965928cd777b4.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "534076818", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-01-13T16:05:34.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 404, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "180:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 404, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "615480", + "BPS-eng": "615480", + "DURATION": "01:37:14.537000000", + "DURATION-eng": "01:37:14.537000000", + "NUMBER_OF_BYTES": "448880333", + "NUMBER_OF_BYTES-eng": "448880333", + "NUMBER_OF_FRAMES": "139889", + "NUMBER_OF_FRAMES-eng": "139889", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-01-13 16:05:34", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-01-13 16:05:34" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS": "114616", + "BPS-eng": "114616", + "DURATION": "01:37:14.560000000", + "DURATION-eng": "01:37:14.560000000", + "NUMBER_OF_BYTES": "83591854", + "NUMBER_OF_BYTES-eng": "83591854", + "NUMBER_OF_FRAMES": "273495", + "NUMBER_OF_FRAMES-eng": "273495", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-01-13 16:05:34", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-01-13 16:05:34" + }, + "time_base": "1/1000" + } + ] + }, + "My Name Is Bruce (2007)/My Name Is Bruce.avi": { + "format": { + "bit_rate": "1163203", + "duration": "5047.968000", + "filename": "My Name Is Bruce (2007)/My Name Is Bruce.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733976576", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1008279", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 624, + "display_aspect_ratio": "39:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5047.959583", + "duration_ts": 121030, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "121030", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "142160", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5047.968000", + "duration_ts": 210332, + "index": 1, + "nb_frames": "210332", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Anonymous (2011)/Anonymous.2011.BRRip.XviD.AC3-playXD.avi": { + "format": { + "bit_rate": "1503237", + "duration": "7797.700351", + "filename": "Anonymous (2011)/Anonymous.2011.BRRip.XviD.AC3-playXD.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1465224080", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1111540", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7797.700351", + "duration_ts": 186958, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "186958", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "374289408", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "sparks-anonymous-720" + }, + "time_base": "1/48000" + } + ] + }, + "Babylon 5 - The Lost Tales (2007)/Babylon 5 - The Lost Tales.avi": { + "format": { + "bit_rate": "1412506", + "duration": "4154.000000", + "filename": "Babylon 5 - The Lost Tales (2007)/Babylon 5 - The Lost Tales.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733444096", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1293239", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4154.000000", + "duration_ts": 103850, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": -99, + "nb_frames": "103850", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "58156000", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Keeping Up With The Joneses (2016)/Keeping.Up.with.the.Joneses.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1415896", + "duration": "6362.655000", + "filename": "Keeping Up With The Joneses (2016)/Keeping.Up.with.the.Joneses.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1126107528", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-12-30T03:09:41.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "Keeping.Up.with.the.Joneses.2016.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "30500000/1272531", + "bit_rate": "1249710", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1272531/61000000", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "1048324:435525", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6362.655000", + "duration_ts": 572638950, + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "152500", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "4719:4717", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-30T03:09:41.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160010", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6319.211000", + "duration_ts": 303322128, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "296213", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-30T03:09:41.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "99", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6362.655000", + "duration_ts": 572638950, + "height": 60, + "index": 2, + "nb_frames": "3688", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-30T03:09:41.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6362.655000", + "duration_ts": 6362655, + "index": 3, + "nb_frames": "28", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-30T03:09:41.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Harry Potter And The Chamber Of Secrets (2002)/Harry Potter and the Chamber of Secrets (2002) Ult Ext Ed 720p Dual Audio BluRay - KartiKing - DMMovies.mkv": { + "format": { + "bit_rate": "2117747", + "duration": "10035.440000", + "filename": "Harry Potter And The Chamber Of Secrets (2002)/Harry Potter and the Chamber of Secrets (2002) Ult Ext Ed 720p Dual Audio BluRay - KartiKing - DMMovies.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2656566019", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101", + "title": "Harry Potter and the Chamber of Secrets (2002) - KartiKing - Movies.DigitalMaza.Org" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "999805", + "BPS-eng": "999805", + "DURATION": "02:47:15.440000000", + "DURATION-eng": "02:47:15.440000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "1254185675", + "NUMBER_OF_BYTES-eng": "1254185675", + "NUMBER_OF_FRAMES": "250886", + "NUMBER_OF_FRAMES-eng": "250886", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:39:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:39:22", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "02:47:15.424000000", + "DURATION-eng": "02:47:15.424000000", + "NUMBER_OF_BYTES": "280991872", + "NUMBER_OF_BYTES-eng": "280991872", + "NUMBER_OF_FRAMES": "313607", + "NUMBER_OF_FRAMES-eng": "313607", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:39:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:39:22", + "language": "hin", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "02:47:14.606000000", + "DURATION-eng": "02:47:14.608000000", + "NUMBER_OF_BYTES": "160553730", + "NUMBER_OF_BYTES-eng": "160553730", + "NUMBER_OF_FRAMES": "288103", + "NUMBER_OF_FRAMES-eng": "288103", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:39:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:39:22", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10035.440000", + "duration_ts": 10035440, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "00:00:20.000000000", + "DURATION-eng": "00:00:13.000000000", + "NUMBER_OF_BYTES": "51", + "NUMBER_OF_BYTES-eng": "51", + "NUMBER_OF_FRAMES": "2", + "NUMBER_OF_FRAMES-eng": "2", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:39:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:39:22", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + } + ] + }, + "Anna Karenina (2012)/Anna.Karenina.2012.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "916533", + "duration": "7772.671667", + "filename": "Anna Karenina (2012)/Anna.Karenina.2012.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "890489065", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-06T05:55:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "817047", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7772.598167", + "duration_ts": 746169424, + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "186356", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 12012, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-02-06T05:55:29.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95618", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7772.672000", + "duration_ts": 373088256, + "index": 1, + "max_bit_rate": "134168", + "nb_frames": "364344", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-06T05:55:41.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Last Dragon (1985)/The.Last.Dragon.1985.DVDRip.XviD-MIL.avi": { + "format": { + "bit_rate": "902763", + "duration": "6501.000000", + "filename": "The Last Dragon (1985)/The.Last.Dragon.1985.DVDRip.XviD-MIL.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733607936", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "763600", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 328, + "coded_width": 612, + "display_aspect_ratio": "153:82", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6501.000000", + "duration_ts": 162525, + "has_b_frames": 1, + "height": 328, + "index": 0, + "level": 5, + "nb_frames": "162525", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 612 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126256", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6500.712000", + "duration_ts": 270863, + "index": 1, + "nb_frames": "270863", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "THX 1138 (1971)/THX.1138.1971.1080p.Bluray.Multilanguage.Legendado.PT-BR.mkv": { + "format": { + "bit_rate": "7252909", + "duration": "5312.310000", + "filename": "THX 1138 (1971)/THX.1138.1971.1080p.Bluray.Multilanguage.Legendado.PT-BR.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 15, + "probe_score": 100, + "size": "4816213031", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-05T01:35:45.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5598544", + "BPS-eng": "5598544", + "DURATION": "01:28:31.265000000", + "DURATION-eng": "01:28:31.265000000", + "NUMBER_OF_BYTES": "3716919465", + "NUMBER_OF_BYTES-eng": "3716919465", + "NUMBER_OF_FRAMES": "127343", + "NUMBER_OF_FRAMES-eng": "127343", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:28:32.310000000", + "DURATION-eng": "01:28:32.310000000", + "NUMBER_OF_BYTES": "1002034348", + "NUMBER_OF_BYTES-eng": "1002034348", + "NUMBER_OF_FRAMES": "498029", + "NUMBER_OF_FRAMES-eng": "498029", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "01:26:46.430000000", + "DURATION-eng": "01:26:46.430000000", + "NUMBER_OF_BYTES": "30759", + "NUMBER_OF_BYTES-eng": "30759", + "NUMBER_OF_FRAMES": "822", + "NUMBER_OF_FRAMES-eng": "822", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9908", + "BPS-eng": "9908", + "DURATION": "01:28:10.452000000", + "DURATION-eng": "01:28:10.452000000", + "NUMBER_OF_BYTES": "6552501", + "NUMBER_OF_BYTES-eng": "6552501", + "NUMBER_OF_FRAMES": "1318", + "NUMBER_OF_FRAMES-eng": "1318", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "11489", + "BPS-eng": "11489", + "DURATION": "01:28:10.452000000", + "DURATION-eng": "01:28:10.452000000", + "NUMBER_OF_BYTES": "7597786", + "NUMBER_OF_BYTES-eng": "7597786", + "NUMBER_OF_FRAMES": "1768", + "NUMBER_OF_FRAMES-eng": "1768", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13310", + "BPS-eng": "13310", + "DURATION": "01:28:10.411000000", + "DURATION-eng": "01:28:10.411000000", + "NUMBER_OF_BYTES": "8801964", + "NUMBER_OF_BYTES-eng": "8801964", + "NUMBER_OF_FRAMES": "1890", + "NUMBER_OF_FRAMES-eng": "1890", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "10914", + "BPS-eng": "10914", + "DURATION": "01:28:10.452000000", + "DURATION-eng": "01:28:10.452000000", + "NUMBER_OF_BYTES": "7218065", + "NUMBER_OF_BYTES-eng": "7218065", + "NUMBER_OF_FRAMES": "1528", + "NUMBER_OF_FRAMES-eng": "1528", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8636", + "BPS-eng": "8636", + "DURATION": "01:28:10.285000000", + "DURATION-eng": "01:28:10.285000000", + "NUMBER_OF_BYTES": "5711096", + "NUMBER_OF_BYTES-eng": "5711096", + "NUMBER_OF_FRAMES": "1454", + "NUMBER_OF_FRAMES-eng": "1454", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13982", + "BPS-eng": "13982", + "DURATION": "01:28:10.411000000", + "DURATION-eng": "01:28:10.411000000", + "NUMBER_OF_BYTES": "9246645", + "NUMBER_OF_BYTES-eng": "9246645", + "NUMBER_OF_FRAMES": "1980", + "NUMBER_OF_FRAMES-eng": "1980", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9171", + "BPS-eng": "9171", + "DURATION": "01:25:54.066000000", + "DURATION-eng": "01:25:54.066000000", + "NUMBER_OF_BYTES": "5908723", + "NUMBER_OF_BYTES-eng": "5908723", + "NUMBER_OF_FRAMES": "1656", + "NUMBER_OF_FRAMES-eng": "1656", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "11368", + "BPS-eng": "11368", + "DURATION": "01:28:10.452000000", + "DURATION-eng": "01:28:10.452000000", + "NUMBER_OF_BYTES": "7517768", + "NUMBER_OF_BYTES-eng": "7517768", + "NUMBER_OF_FRAMES": "1766", + "NUMBER_OF_FRAMES-eng": "1766", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12370", + "BPS-eng": "12370", + "DURATION": "01:28:10.452000000", + "DURATION-eng": "01:28:10.452000000", + "NUMBER_OF_BYTES": "8180916", + "NUMBER_OF_BYTES-eng": "8180916", + "NUMBER_OF_FRAMES": "1768", + "NUMBER_OF_FRAMES-eng": "1768", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9591", + "BPS-eng": "9591", + "DURATION": "01:28:10.452000000", + "DURATION-eng": "01:28:10.452000000", + "NUMBER_OF_BYTES": "6343003", + "NUMBER_OF_BYTES-eng": "6343003", + "NUMBER_OF_FRAMES": "1580", + "NUMBER_OF_FRAMES-eng": "1580", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "21536", + "BPS-eng": "21536", + "DURATION": "01:28:02.193000000", + "DURATION-eng": "01:28:02.193000000", + "NUMBER_OF_BYTES": "14220274", + "NUMBER_OF_BYTES-eng": "14220274", + "NUMBER_OF_FRAMES": "2179", + "NUMBER_OF_FRAMES-eng": "2179", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5312.310000", + "duration_ts": 5312310, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "11810", + "BPS-eng": "11810", + "DURATION": "01:28:10.327000000", + "DURATION-eng": "01:28:10.327000000", + "NUMBER_OF_BYTES": "7809925", + "NUMBER_OF_BYTES-eng": "7809925", + "NUMBER_OF_FRAMES": "1750", + "NUMBER_OF_FRAMES-eng": "1750", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-05 01:35:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-05 01:35:45", + "language": "spa" + }, + "time_base": "1/1000" + } + ] + }, + "House of Flying Daggers (2004)/House of Flying Daggers 2004 [Shi mian mai fu] BluRayRip 720p 5_1_ch AVCHD h264 AAC subs 2hrs.mp4": { + "format": { + "bit_rate": "2104990", + "duration": "7133.268333", + "filename": "House of Flying Daggers (2004)/House of Flying Daggers 2004 [Shi mian mai fu] BluRayRip 720p 5_1_ch AVCHD h264 AAC subs 2hrs.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1876932518", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2009-09-18T10:50:59.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1704216", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7133.167708", + "duration_ts": 171196025, + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "171025", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-09-18T10:50:59.000000Z", + "handler_name": "HFDq26", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "198539", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7133.269333", + "duration_ts": 342396928, + "index": 1, + "max_bit_rate": "233224", + "nb_frames": "167186", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-18T10:51:27.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "zho" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "198389", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7133.269333", + "duration_ts": 342396928, + "index": 2, + "max_bit_rate": "229560", + "nb_frames": "167186", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-18T10:51:30.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "22", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7133.268000", + "duration_ts": 7133268, + "height": 720, + "index": 3, + "nb_frames": "1171", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-18T10:51:32.000000Z", + "handler_name": "GPAC Streaming Text Handler", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "Date Night (2010)/501dedaf16d2430499acd961deded23e.mkv": { + "format": { + "bit_rate": "12304103", + "duration": "6096.160000", + "filename": "Date Night (2010)/501dedaf16d2430499acd961deded23e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "9375972766", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-07-02T18:21:23.000000Z", + "encoder": "libebml v0.7.9 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "x264_L4.1 @ 10360 Kbps" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English DTS 5.1 @ 1.5 Mbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6096.160000", + "duration_ts": 6096160, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6096.160000", + "duration_ts": 6096160, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English Forced for Hebrew parts only" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 4, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English Descriptive Track" + }, + "time_base": "1/1000" + } + ] + }, + "The People vs Larry Flynt/The.People.vs.Larry.Flynt.1996.DVDRip.XviD.AR.cd2.avi": { + "format": { + "bit_rate": "1560299", + "duration": "3772.226792", + "filename": "The People vs Larry Flynt/The.People.vs.Larry.Flynt.1996.DVDRip.XviD.AR.cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735725568", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1361629", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3772.226792", + "duration_ts": 90443, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "90443", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "90533443", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "The Girl Who Kicked The Hornets Nest (2009)/b34ccbfb258b4293a76a19d422fee229.mkv": { + "format": { + "bit_rate": "10649688", + "duration": "8816.850000", + "filename": "The Girl Who Kicked The Hornets Nest (2009)/b34ccbfb258b4293a76a19d422fee229.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "11737088381", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.3 (date: 2010 aug 28)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8816.850000", + "duration_ts": 8816850, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Ralph Breaks The Internet (2018)/0d4cbfbaa5e04e5b805bf3b6907e29ef.mkv": { + "format": { + "bit_rate": "4875520", + "duration": "6805.635000", + "filename": "Ralph Breaks The Internet (2018)/0d4cbfbaa5e04e5b805bf3b6907e29ef.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4147626652", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-11T15:07:08.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Sneakers/SNEAKERS - 1992 [NTSCDVDRIP] XVID AC3 ENG [A-RG].avi": { + "format": { + "bit_rate": "999046", + "duration": "7523.807958", + "filename": "Sneakers/SNEAKERS - 1992 [NTSCDVDRIP] XVID AC3 ENG [A-RG].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "939579392", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "799993", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7523.807958", + "duration_ts": 180391, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "180391", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "180570624", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Terminator 2 Judgment Day (1991)/088b162ca88d4f728f61fa02fbaa4aec.mkv": { + "format": { + "bit_rate": "5358441", + "duration": "8246.176000", + "filename": "Terminator 2 Judgment Day (1991)/088b162ca88d4f728f61fa02fbaa4aec.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "5523331496", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-07-22T05:22:16.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5100266", + "DURATION-eng": "02:17:26.071000000", + "NUMBER_OF_BYTES-eng": "5257145411", + "NUMBER_OF_FRAMES-eng": "197708", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-22 05:22:16" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "128000", + "DURATION-eng": "02:17:26.176000000", + "NUMBER_OF_BYTES-eng": "131938816", + "NUMBER_OF_FRAMES-eng": "257693", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-22 05:22:16", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "128000", + "DURATION-eng": "02:17:26.176000000", + "NUMBER_OF_BYTES-eng": "131938816", + "NUMBER_OF_FRAMES-eng": "257693", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-22 05:22:16", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8246.176000", + "duration_ts": 8246176, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34", + "DURATION-eng": "02:15:46.680000000", + "NUMBER_OF_BYTES-eng": "34674", + "NUMBER_OF_FRAMES-eng": "1896", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-22 05:22:16", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8246.176000", + "duration_ts": 8246176, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "0", + "DURATION-eng": "01:34:24.451000000", + "NUMBER_OF_BYTES-eng": "133", + "NUMBER_OF_FRAMES-eng": "6", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-22 05:22:16", + "language": "fre", + "title": "French [Forced]" + }, + "time_base": "1/1000" + } + ] + }, + "Game Of Thrones Conquest And Rebellion (2017)/flame-game.of.thrones.conquest.and.rebellion.2017.1080p.bluray.x264.mkv": { + "format": { + "bit_rate": "10470591", + "duration": "2687.712000", + "filename": "Game Of Thrones Conquest And Rebellion (2017)/flame-game.of.thrones.conquest.and.rebellion.2017.1080p.bluray.x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3517741687", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-13T21:07:01.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9828436", + "BPS-eng": "9828436", + "DURATION": "00:44:47.685000000", + "DURATION-eng": "00:44:47.685000000", + "NUMBER_OF_BYTES": "3301967614", + "NUMBER_OF_BYTES-eng": "3301967614", + "NUMBER_OF_FRAMES": "64440", + "NUMBER_OF_FRAMES-eng": "64440", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-13 21:07:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-13 21:07:01", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "00:44:47.712000000", + "DURATION-eng": "00:44:47.712000000", + "NUMBER_OF_BYTES": "215016960", + "NUMBER_OF_BYTES-eng": "215016960", + "NUMBER_OF_FRAMES": "83991", + "NUMBER_OF_FRAMES-eng": "83991", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-13 21:07:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-13 21:07:01", + "language": "eng", + "title": "English AC3 640 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2687.712000", + "duration_ts": 2687712, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "107", + "BPS-eng": "107", + "DURATION": "00:40:33.847000000", + "DURATION-eng": "00:40:33.847000000", + "NUMBER_OF_BYTES": "32629", + "NUMBER_OF_BYTES-eng": "32629", + "NUMBER_OF_FRAMES": "664", + "NUMBER_OF_FRAMES-eng": "664", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-13 21:07:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-13 21:07:01", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2687.712000", + "duration_ts": 2687712, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "110", + "BPS-eng": "110", + "DURATION": "00:41:11.927000000", + "DURATION-eng": "00:41:11.927000000", + "NUMBER_OF_BYTES": "34244", + "NUMBER_OF_BYTES-eng": "34244", + "NUMBER_OF_FRAMES": "667", + "NUMBER_OF_FRAMES-eng": "667", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v18.0.0 ('Apricity') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-13 21:07:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-13 21:07:01", + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + } + ] + }, + "Star Wars Episode IV A New Hope (1977)/f25d4d6b1d3c4751abc342ec1df8d709.mkv": { + "format": { + "bit_rate": "11749882", + "duration": "7484.736000", + "filename": "Star Wars Episode IV A New Hope (1977)/f25d4d6b1d3c4751abc342ec1df8d709.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 16, + "probe_score": 100, + "size": "10993096382", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-03-17T17:09:38.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "9969737", + "BPS-eng": "9969737", + "DURATION": "02:04:44.645000000", + "DURATION-eng": "02:04:44.645000000", + "NUMBER_OF_BYTES": "9327493238", + "NUMBER_OF_BYTES-eng": "9327493238", + "NUMBER_OF_FRAMES": "179452", + "NUMBER_OF_FRAMES-eng": "179452", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "02:04:44.736000000", + "DURATION-eng": "02:04:44.736000000", + "NUMBER_OF_BYTES": "1411808328", + "NUMBER_OF_BYTES-eng": "1411808328", + "NUMBER_OF_FRAMES": "701694", + "NUMBER_OF_FRAMES-eng": "701694", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "21753", + "BPS-eng": "21753", + "DURATION": "02:01:54.224000000", + "DURATION-eng": "02:01:54.224000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "19889052", + "NUMBER_OF_BYTES-eng": "19889052", + "NUMBER_OF_FRAMES": "2604", + "NUMBER_OF_FRAMES-eng": "2604", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "572", + "BPS-eng": "572", + "DURATION": "02:04:30.421000000", + "DURATION-eng": "02:04:30.421000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "534808", + "NUMBER_OF_BYTES-eng": "534808", + "NUMBER_OF_FRAMES": "201", + "NUMBER_OF_FRAMES-eng": "201", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1071", + "BPS-eng": "1071", + "DURATION": "02:04:29.045000000", + "DURATION-eng": "02:04:29.045000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "1000835", + "NUMBER_OF_BYTES-eng": "1000835", + "NUMBER_OF_FRAMES": "315", + "NUMBER_OF_FRAMES-eng": "315", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "306", + "BPS-eng": "306", + "DURATION": "01:14:42.144000000", + "DURATION-eng": "01:14:42.144000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "171691", + "NUMBER_OF_BYTES-eng": "171691", + "NUMBER_OF_FRAMES": "58", + "NUMBER_OF_FRAMES-eng": "58", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "19361", + "BPS-eng": "19361", + "DURATION": "02:04:19.953000000", + "DURATION-eng": "02:04:19.953000000", + "LANGUAGE": "bul", + "NUMBER_OF_BYTES": "18054487", + "NUMBER_OF_BYTES-eng": "18054487", + "NUMBER_OF_FRAMES": "2224", + "NUMBER_OF_FRAMES-eng": "2224", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17996", + "BPS-eng": "17996", + "DURATION": "02:04:19.953000000", + "DURATION-eng": "02:04:19.953000000", + "LANGUAGE": "scr", + "NUMBER_OF_BYTES": "16781450", + "NUMBER_OF_BYTES-eng": "16781450", + "NUMBER_OF_FRAMES": "2350", + "NUMBER_OF_FRAMES-eng": "2350", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17322", + "BPS-eng": "17322", + "DURATION": "02:04:19.953000000", + "DURATION-eng": "02:04:19.953000000", + "LANGUAGE": "cze", + "NUMBER_OF_BYTES": "16153495", + "NUMBER_OF_BYTES-eng": "16153495", + "NUMBER_OF_FRAMES": "2400", + "NUMBER_OF_FRAMES-eng": "2400", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "21016", + "BPS-eng": "21016", + "DURATION": "02:01:53.932000000", + "DURATION-eng": "02:01:53.932000000", + "LANGUAGE": "ita", + "NUMBER_OF_BYTES": "19214023", + "NUMBER_OF_BYTES-eng": "19214023", + "NUMBER_OF_FRAMES": "2596", + "NUMBER_OF_FRAMES-eng": "2596", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "36001", + "BPS-eng": "36001", + "DURATION": "02:04:30.380000000", + "DURATION-eng": "02:04:30.380000000", + "LANGUAGE": "ita", + "NUMBER_OF_BYTES": "33618076", + "NUMBER_OF_BYTES-eng": "33618076", + "NUMBER_OF_FRAMES": "3522", + "NUMBER_OF_FRAMES-eng": "3522", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "39763", + "BPS-eng": "39763", + "DURATION": "02:04:29.045000000", + "DURATION-eng": "02:04:29.045000000", + "LANGUAGE": "ita", + "NUMBER_OF_BYTES": "37124063", + "NUMBER_OF_BYTES-eng": "37124063", + "NUMBER_OF_FRAMES": "3524", + "NUMBER_OF_FRAMES-eng": "3524", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "24747", + "BPS-eng": "24747", + "DURATION": "02:04:20.245000000", + "DURATION-eng": "02:04:20.245000000", + "LANGUAGE": "rum", + "NUMBER_OF_BYTES": "23078089", + "NUMBER_OF_BYTES-eng": "23078089", + "NUMBER_OF_FRAMES": "2634", + "NUMBER_OF_FRAMES-eng": "2634", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25683", + "BPS-eng": "25683", + "DURATION": "02:04:19.953000000", + "DURATION-eng": "02:04:19.953000000", + "LANGUAGE": "rus", + "NUMBER_OF_BYTES": "23949898", + "NUMBER_OF_BYTES-eng": "23949898", + "NUMBER_OF_FRAMES": "2686", + "NUMBER_OF_FRAMES-eng": "2686", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "21183", + "BPS-eng": "21183", + "DURATION": "02:04:20.245000000", + "DURATION-eng": "02:04:20.245000000", + "LANGUAGE": "slv", + "NUMBER_OF_BYTES": "19754067", + "NUMBER_OF_BYTES-eng": "19754067", + "NUMBER_OF_FRAMES": "2632", + "NUMBER_OF_FRAMES-eng": "2632", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7484.736000", + "duration_ts": 7484736, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "22800", + "BPS-eng": "22800", + "DURATION": "02:04:19.953000000", + "DURATION-eng": "02:04:19.953000000", + "LANGUAGE": "tur", + "NUMBER_OF_BYTES": "21261040", + "NUMBER_OF_BYTES-eng": "21261040", + "NUMBER_OF_FRAMES": "2624", + "NUMBER_OF_FRAMES-eng": "2624", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:09:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:09:38" + }, + "time_base": "1/1000" + } + ] + }, + "Mad Max 3 - Beyond Thunderdome/Mad Max 3 - Beyond Thunderdome.avi": { + "format": { + "bit_rate": "956756", + "duration": "6147.960000", + "filename": "Mad Max 3 - Beyond Thunderdome/Mad Max 3 - Beyond Thunderdome.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735262720", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "819048", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6147.960000", + "duration_ts": 153699, + "has_b_frames": 0, + "height": 256, + "index": 0, + "level": -99, + "nb_frames": "153699", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "98367360", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Resident Evil Afterlife (2010)/Resident Evil Afterlife (2010) R5 XviD-MAXSPEED www.torentz.3xforum.ro.avi": { + "format": { + "bit_rate": "2102413", + "duration": "5570.400000", + "filename": "Resident Evil Afterlife (2010)/Resident Evil Afterlife (2010) R5 XviD-MAXSPEED www.torentz.3xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1463910734", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.8.3, Feb 16 201019:42:50" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1648814", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5570.400000", + "duration_ts": 139260, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "139260", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "311935232", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Star Trek 8 - First Contact/Star Trek 08 First Contact 1996 1280x544.mp4": { + "format": { + "bit_rate": "2243381", + "duration": "6644.330667", + "filename": "Star Trek 8 - First Contact/Star Trek 08 First Contact 1996 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1863220741", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-10T03:49:03.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "789739661/32938725", + "bit_rate": "1983238", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "32938725/1579479322", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6644.220911", + "duration_ts": 597979882, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "159302", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-10T03:49:03.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255690", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6644.330667", + "duration_ts": 318927872, + "index": 1, + "max_bit_rate": "339344", + "nb_frames": "311453", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-10T03:49:03.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "What Happens In Vegas (2008)/What.Happens.In.Vegas[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "994369", + "duration": "5923.465132", + "filename": "What Happens In Vegas (2008)/What.Happens.In.Vegas[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736264192", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "857061", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 286, + "coded_width": 676, + "display_aspect_ratio": "26:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5923.465132", + "duration_ts": 142021, + "has_b_frames": 1, + "height": 286, + "index": 0, + "level": 5, + "nb_frames": "142021", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 676 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "246811", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Crouching Tiger Hidden Dragon (2000)/001e013d94a24687a732cc8c6368c322.mkv": { + "format": { + "bit_rate": "6204487", + "duration": "7214.207000", + "filename": "Crouching Tiger Hidden Dragon (2000)/001e013d94a24687a732cc8c6368c322.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5595057538", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-03-26T11:27:06Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5754578", + "DURATION-eng": "02:00:14.207000000", + "NUMBER_OF_BYTES-eng": "5189340031", + "NUMBER_OF_FRAMES-eng": "172968", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-27 22:45:06" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "02:00:14.176000000", + "NUMBER_OF_BYTES-eng": "403993856", + "NUMBER_OF_FRAMES-eng": "225443", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-27 22:45:06", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7214.207000", + "duration_ts": 7214207, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "01:58:42.675000000", + "NUMBER_OF_BYTES-eng": "34834", + "NUMBER_OF_FRAMES-eng": "1041", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-27 22:45:06", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Scratch (2001)/Scratch.(Hip-hop.documentary).avi": { + "format": { + "bit_rate": "1106981", + "duration": "5267.080000", + "filename": "Scratch (2001)/Scratch.(Hip-hop.documentary).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "728819712", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "966709", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 512, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5267.080000", + "duration_ts": 131677, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "131677", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127992", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5267.069388", + "duration_ts": 201630, + "index": 1, + "nb_frames": "201630", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "Adaptation (2002)/Adaptation.2002.DVDRip.XviD-DiSSOLVE.avi": { + "format": { + "bit_rate": "851832", + "duration": "6896.016000", + "filename": "Adaptation (2002)/Adaptation.2002.DVDRip.XviD-DiSSOLVE.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734281728", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "728179", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 624, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6896.014125", + "duration_ts": 165339, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "165339", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "110944", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6896.016000", + "duration_ts": 287334, + "index": 1, + "nb_frames": "287334", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Matchstick Men (2003)/Matchstick.Men.2003.DVDRip.XviD.AR.avi": { + "format": { + "bit_rate": "843212", + "duration": "6966.167542", + "filename": "Matchstick Men (2003)/Matchstick.Men.2003.DVDRip.XviD.AR.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734244864", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "708202", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6966.167542", + "duration_ts": 167021, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "167021", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "290257", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Oblivion (2013)/Oblivion.2013.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "978951", + "duration": "7482.346667", + "filename": "Oblivion (2013)/Oblivion.2013.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "915607173", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-07-23T05:54:25.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "881058", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7482.266458", + "duration_ts": 179574395, + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "179395", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-07-23T05:54:25.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93779", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7482.346667", + "duration_ts": 359152640, + "index": 1, + "max_bit_rate": "104424", + "nb_frames": "350735", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-07-23T05:54:35.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "2001 A Space Odyssey (1968)/2001.A.Space.Odyssey.1968.1080p.BluRay.x264-nikt0.mkv": { + "format": { + "bit_rate": "6206840", + "duration": "8932.736000", + "filename": "2001 A Space Odyssey (1968)/2001.A.Space.Odyssey.1968.1080p.BluRay.x264-nikt0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6930508343", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-09-06T21:05:37Z", + "ENCODER": "Lavf57.7.2", + "title": "2001.A.Space.Odyssey.1968.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5757685", + "DURATION-eng": "02:28:51.673000000", + "NUMBER_OF_BYTES-eng": "6428220289", + "NUMBER_OF_FRAMES-eng": "214146", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-07 10:58:24" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "02:28:52.736000000", + "NUMBER_OF_BYTES-eng": "500233216", + "NUMBER_OF_FRAMES-eng": "279148", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-07 10:58:24", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8932.736000", + "duration_ts": 8932736, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32", + "DURATION-eng": "01:58:48.613000000", + "NUMBER_OF_BYTES-eng": "29100", + "NUMBER_OF_FRAMES-eng": "642", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-07 10:58:24", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Men In Black International (2019)/661c47d2b43d40d592f7110763b4d505.mkv": { + "format": { + "bit_rate": "8730230", + "duration": "6888.576000", + "filename": "Men In Black International (2019)/661c47d2b43d40d592f7110763b4d505.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "7517357443", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-20T07:15:48.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 960, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "2:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 960, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "8087968", + "DURATION-eng": "01:54:48.549000000", + "NUMBER_OF_BYTES-eng": "6964295766", + "NUMBER_OF_FRAMES-eng": "165160", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-20 07:15:48" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:54:48.576000000", + "NUMBER_OF_BYTES-eng": "551086080", + "NUMBER_OF_FRAMES-eng": "215268", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-20 07:15:48", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6888.576000", + "duration_ts": 6888576, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:43:17.801000000", + "NUMBER_OF_BYTES-eng": "52956", + "NUMBER_OF_FRAMES-eng": "1706", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-20 07:15:48", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6888.576000", + "duration_ts": 6888576, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:53:16.224000000", + "NUMBER_OF_BYTES-eng": "57974", + "NUMBER_OF_FRAMES-eng": "2014", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-20 07:15:48", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "John Carter (2012)/John.Carter.2012.1080p.Bluray.x264.YIFY.mp4": { + "format": { + "bit_rate": "1841812", + "duration": "7921.741667", + "filename": "John Carter (2012)/John.Carter.2012.1080p.Bluray.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1823795737", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-05-19T08:08:06.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1743936", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7921.663750", + "duration_ts": 760479720, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "189930", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-05-19T08:08:06.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7921.742948", + "duration_ts": 349348864, + "index": 1, + "max_bit_rate": "106080", + "nb_frames": "341161", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-05-19T08:18:10.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/44100" + } + ] + }, + "Serenity (2005)/83bf5f0242434b4fb4fa2617b687269e.mkv": { + "format": { + "bit_rate": "8041508", + "duration": "7142.581000", + "filename": "Serenity (2005)/83bf5f0242434b4fb4fa2617b687269e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 25, + "probe_score": 100, + "size": "7179640498", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-12-11T23:41:34.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Main Audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Commentary Track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Commentary Track 2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "ASS English main audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "ASS English commentary track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin", + "title": "ASS Finnish main audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin", + "title": "ASS Finnish commentary track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "ASS Swedish main audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "ASS Swedish commentary track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan", + "title": "ASS Danish main audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan", + "title": "ASS Danish commentary track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor", + "title": "ASS Norwegian main audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor", + "title": "ASS Norwegian commentary track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "ASS Dutch main audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "ASS Dutch commentary track 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 7142581, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 642832290, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Bold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 642832290, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Semibold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7142.581000", + "duration_ts": 642832290, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-SemiboldIt.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "The A-Team (2010)/The.A-Team.2010.EXTENDED.iNTERNAL.720p.BluRay.x264-MOOVEE.mkv": { + "format": { + "bit_rate": "6870277", + "duration": "8013.923000", + "filename": "The A-Team (2010)/The.A-Team.2010.EXTENDED.iNTERNAL.720p.BluRay.x264-MOOVEE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 11, + "probe_score": 100, + "size": "6882234526", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-09-09T13:34:55.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5263019", + "BPS-eng": "5263019", + "DURATION": "02:13:33.923000000", + "DURATION-eng": "02:13:33.923000000", + "NUMBER_OF_BYTES": "5272179058", + "NUMBER_OF_BYTES-eng": "5272179058", + "NUMBER_OF_FRAMES": "192142", + "NUMBER_OF_FRAMES-eng": "192142", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509001", + "BPS-eng": "1509001", + "DURATION": "02:13:33.867000000", + "DURATION-eng": "02:13:33.867000000", + "NUMBER_OF_BYTES": "1511617028", + "NUMBER_OF_BYTES-eng": "1511617028", + "NUMBER_OF_FRAMES": "751300", + "NUMBER_OF_FRAMES-eng": "751300", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31567", + "BPS-eng": "31567", + "DURATION": "02:12:34.489000000", + "DURATION-eng": "02:12:34.489000000", + "NUMBER_OF_BYTES": "31387727", + "NUMBER_OF_BYTES-eng": "31387727", + "NUMBER_OF_FRAMES": "4334", + "NUMBER_OF_FRAMES-eng": "4334", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15851", + "BPS-eng": "15851", + "DURATION": "02:06:34.795000000", + "DURATION-eng": "02:06:34.795000000", + "NUMBER_OF_BYTES": "15048640", + "NUMBER_OF_BYTES-eng": "15048640", + "NUMBER_OF_FRAMES": "3750", + "NUMBER_OF_FRAMES-eng": "3750", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "27853", + "BPS-eng": "27853", + "DURATION": "02:12:38.700000000", + "DURATION-eng": "02:12:38.700000000", + "NUMBER_OF_BYTES": "27709782", + "NUMBER_OF_BYTES-eng": "27709782", + "NUMBER_OF_FRAMES": "3980", + "NUMBER_OF_FRAMES-eng": "3980", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "26651", + "BPS-eng": "26651", + "DURATION": "02:12:38.700000000", + "DURATION-eng": "02:12:38.700000000", + "NUMBER_OF_BYTES": "26513563", + "NUMBER_OF_BYTES-eng": "26513563", + "NUMBER_OF_FRAMES": "4020", + "NUMBER_OF_FRAMES-eng": "4020", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "cze", + "title": "Czech" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "26473", + "BPS-eng": "26473", + "DURATION": "02:12:38.700000000", + "DURATION-eng": "02:12:38.700000000", + "NUMBER_OF_BYTES": "26337008", + "NUMBER_OF_BYTES-eng": "26337008", + "NUMBER_OF_FRAMES": "4024", + "NUMBER_OF_FRAMES-eng": "4024", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "hun", + "title": "Hungarian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29012", + "BPS-eng": "29012", + "DURATION": "02:12:38.951000000", + "DURATION-eng": "02:12:38.951000000", + "NUMBER_OF_BYTES": "28863551", + "NUMBER_OF_BYTES-eng": "28863551", + "NUMBER_OF_FRAMES": "4024", + "NUMBER_OF_FRAMES-eng": "4024", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "tur", + "title": "Turkish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13847", + "BPS-eng": "13847", + "DURATION": "02:07:18.256000000", + "DURATION-eng": "02:07:18.256000000", + "NUMBER_OF_BYTES": "13221412", + "NUMBER_OF_BYTES-eng": "13221412", + "NUMBER_OF_FRAMES": "1970", + "NUMBER_OF_FRAMES-eng": "1970", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "367", + "BPS-eng": "367", + "DURATION": "02:12:33.404000000", + "DURATION-eng": "02:12:33.404000000", + "NUMBER_OF_BYTES": "365806", + "NUMBER_OF_BYTES-eng": "365806", + "NUMBER_OF_FRAMES": "62", + "NUMBER_OF_FRAMES-eng": "62", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "eng", + "title": "English Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8013.923000", + "duration_ts": 8013923, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "352", + "BPS-eng": "352", + "DURATION": "01:48:58.949000000", + "DURATION-eng": "01:48:58.949000000", + "NUMBER_OF_BYTES": "287729", + "NUMBER_OF_BYTES-eng": "287729", + "NUMBER_OF_FRAMES": "78", + "NUMBER_OF_FRAMES-eng": "78", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v15.0.0 ('Duel with the Devil') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-09-09 13:34:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-09-09 13:34:55", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + } + ] + }, + "Alien Nation (1988)/Alien.Nation.1988.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "6952123", + "duration": "5396.022000", + "filename": "Alien Nation (1988)/Alien.Nation.1988.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4689226217", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5441462", + "BPS-eng": "5441462", + "DURATION": "01:29:55.057000000", + "DURATION-eng": "01:29:55.057000000", + "NUMBER_OF_BYTES": "3669624836", + "NUMBER_OF_BYTES-eng": "3669624836", + "NUMBER_OF_FRAMES": "129352", + "NUMBER_OF_FRAMES-eng": "129352", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:29:56.022000000", + "DURATION-eng": "01:29:56.022000000", + "NUMBER_OF_BYTES": "1017824524", + "NUMBER_OF_BYTES-eng": "1017824524", + "NUMBER_OF_FRAMES": "505877", + "NUMBER_OF_FRAMES-eng": "505877", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5396.022000", + "duration_ts": 5396022, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "00:21:46.671000000", + "DURATION-eng": "00:21:46.671000000", + "NUMBER_OF_BYTES": "648", + "NUMBER_OF_BYTES-eng": "648", + "NUMBER_OF_FRAMES": "19", + "NUMBER_OF_FRAMES-eng": "19", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5396.022000", + "duration_ts": 5396022, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "01:29:33.454000000", + "DURATION-eng": "01:29:33.454000000", + "NUMBER_OF_BYTES": "35811", + "NUMBER_OF_BYTES-eng": "35811", + "NUMBER_OF_FRAMES": "1360", + "NUMBER_OF_FRAMES-eng": "1360", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5396.022000", + "duration_ts": 5396022, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54", + "BPS-eng": "54", + "DURATION": "01:29:33.454000000", + "DURATION-eng": "01:29:33.454000000", + "NUMBER_OF_BYTES": "36707", + "NUMBER_OF_BYTES-eng": "36707", + "NUMBER_OF_FRAMES": "1417", + "NUMBER_OF_FRAMES-eng": "1417", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Babylon 5 - The Gathering/1 - The Gathering.avi": { + "format": { + "bit_rate": "1018801", + "duration": "5682.015349", + "filename": "Babylon 5 - The Gathering/1 - The Gathering.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "723605504", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "883830", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 496, + "coded_width": 640, + "display_aspect_ratio": "40:31", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5682.015349", + "duration_ts": 136232, + "has_b_frames": 1, + "height": 496, + "index": 0, + "level": -99, + "nb_frames": "136232", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "236751", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Little Fockers (2010)/defaced-litfockers-xvid.avi": { + "format": { + "bit_rate": "1002688", + "duration": "5868.779583", + "filename": "Little Fockers (2010)/defaced-litfockers-xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735569920", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "859940", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5868.779583", + "duration_ts": 140710, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "140710", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130040", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5868.768000", + "duration_ts": 244532, + "index": 1, + "nb_frames": "244532", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Lost In London (2017)/730cb75f55944923b1fd009b7d783e4b.mkv": { + "format": { + "bit_rate": "4215633", + "duration": "6214.688000", + "filename": "Lost In London (2017)/730cb75f55944923b1fd009b7d783e4b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3274855782", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-05-27T13:33:29Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Stereo" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6214.688000", + "duration_ts": 6214688, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Real Genius/Real Genius.mp4": { + "format": { + "bit_rate": "1217724", + "duration": "6355.328000", + "filename": "Real Genius/Real Genius.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "967380127", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T10:03:56.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1786347796/74484081", + "bit_rate": "1046951", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "29425202/1411406143", + "codec_type": "video", + "coded_height": 358, + "coded_width": 708, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "3776:1611", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6355.265578", + "duration_ts": 571973902, + "has_b_frames": 1, + "height": 358, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "152418", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T10:03:56.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 708 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165369", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6355.328000", + "duration_ts": 305055744, + "index": 1, + "max_bit_rate": "253304", + "nb_frames": "297906", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T10:03:56.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "District 9/District 9.m4v": { + "format": { + "bit_rate": "2084932", + "duration": "6735.659000", + "filename": "District 9/District 9.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "1755424023", + "start_time": "0.000000", + "tags": { + "account_id": "HolyRoses", + "artist": "HolyRoses", + "comment": "A HolyRoses release - http://thepiratebay.org/user/HolyRoses/", + "compatible_brands": "isomiso2avc1MSNV", + "copyright": "© 2009 HolyRoses. All Rights Reserved.", + "creation_time": "1970-01-01T00:00:00.000000Z", + "date": "2009-08-15T00:00:00Z", + "description": "An extraterrestrial race forced to live in slum-like conditions on Earth suddenly finds a kindred spirit in a government agent who is exposed to their biotechnology.", + "encoder": "encode-handheld-5.2.pl", + "genre": "Sci-Fi", + "hd_video": "1", + "iTunEXTC": "mpaa|R|400|", + "iTunMOVI": "\n\n\n\n\tcopy-warning\n\tHelp control the pet population. Have your pets spayed or neutered.\n\tstudio\n\tA HolyRoses Production\n\tproducers\n\t\n\t\t\n\t\t\tname\n\t\t\tHolyRoses\n\t\t\n\t\n\n", + "major_brand": "MSNV", + "media_type": "0", + "minor_version": "512", + "purchase_date": "2009-12-13T17:23:15Z", + "synopsis": "An extraterrestrial race forced to live in slum-like conditions on Earth suddenly finds a kindred spirit in a government agent who is exposed to their biotechnology.", + "title": "District 9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1919417", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6735.646000", + "duration_ts": 161655504, + "has_b_frames": 1, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "161494", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "handler_name": "VideoHandler", + "language": "eng" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159872", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6735.659000", + "duration_ts": 323311632, + "index": 1, + "max_bit_rate": "238944", + "nb_frames": "315734", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 864, + "coded_width": 580, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "145:216", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6735.659000", + "duration_ts": 606209310, + "has_b_frames": 0, + "height": 864, + "index": 2, + "level": -99, + "pix_fmt": "yuvj420p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 580 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "5", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6735.659000", + "duration_ts": 6735659, + "height": 60, + "index": 3, + "nb_frames": "301", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-12-14T06:11:31.000000Z", + "language": "eng", + "rotate": "0" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "77", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6735.659000", + "duration_ts": 6735659, + "height": 60, + "index": 4, + "nb_frames": "2853", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-12-14T06:11:31.000000Z", + "language": "eng", + "rotate": "0" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "Babylon 5 - River of Souls/4 - River of Souls.avi": { + "format": { + "bit_rate": "1030212", + "duration": "5621.287955", + "filename": "Babylon 5 - River of Souls/4 - River of Souls.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "723890176", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "895243", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5621.287955", + "duration_ts": 134776, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": -99, + "nb_frames": "134776", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "234220", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "A Bug's Life (1998)/ba4988331d5c4336b53900b5841a765d.mkv": { + "format": { + "bit_rate": "12010877", + "duration": "5693.664000", + "filename": "A Bug's Life (1998)/ba4988331d5c4336b53900b5841a765d.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8548237385", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-05-18T00:38:43.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS 5.1 @ 1.5Mbit/s" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5693.664000", + "duration_ts": 512429760, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Bold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5693.664000", + "duration_ts": 512429760, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Semibold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5693.664000", + "duration_ts": 512429760, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-SemiboldIt.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Europa Report (2013)/Europa.Report.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1962952", + "duration": "5425.193333", + "filename": "Europa Report (2013)/Europa.Report.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1331174396", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-09-25T23:56:20.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1865070", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5425.044625", + "duration_ts": 130201071, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "130071", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-09-25T23:56:20.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93793", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5425.194667", + "duration_ts": 260409344, + "index": 1, + "max_bit_rate": "105728", + "nb_frames": "254306", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-25T23:56:29.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Jason Bourne (2016)/Jason.Bourne.2016.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1015540", + "duration": "7391.593333", + "filename": "Jason Bourne (2016)/Jason.Bourne.2016.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "938307609", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2016-12-05T03:08:32.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64416", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7391.594667", + "duration_ts": 354796544, + "index": 0, + "max_bit_rate": "109392", + "nb_frames": "346481", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-05T03:08:32.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "947233", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7391.509125", + "duration_ts": 177396219, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "177219", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2016-12-05T03:08:34.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "The Zero Theorem (2013)/e535cf1f05f14bbd9481657284cd32b1.mkv": { + "format": { + "bit_rate": "5876936", + "duration": "6387.298000", + "filename": "The Zero Theorem (2013)/e535cf1f05f14bbd9481657284cd32b1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4692217963", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6387.298000", + "duration_ts": 6387298, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6387.298000", + "duration_ts": 6387298, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Spies Like Us/Spies Like Us.avi": { + "format": { + "bit_rate": "886523", + "duration": "6122.997998", + "filename": "Spies Like Us/Spies Like Us.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "678522880", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "749128", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6122.997998", + "duration_ts": 146805, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 5, + "nb_frames": "146805", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "97967495", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio Stream" + }, + "time_base": "1/16000" + } + ] + }, + "Wattstax (1973)/Wattstax [1973].avi": { + "format": { + "bit_rate": "1972330", + "duration": "5946.760000", + "filename": "Wattstax (1973)/Wattstax [1973].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1466122240", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1834677", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 384, + "coded_width": 688, + "display_aspect_ratio": "43:24", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5946.760000", + "duration_ts": 148669, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "148669", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 688 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "247782", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Tin Toy (1988)/tin.toy.1988.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4646025", + "duration": "311.360000", + "filename": "Tin Toy (1988)/tin.toy.1988.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "180823326", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T13:13:24.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1200, + "display_aspect_ratio": "5:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1200 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Pirates of the Caribbean III - At Worlds End/chd-potc3-dts-bdrip.mkv": { + "format": { + "bit_rate": "6739956", + "duration": "10110.091000", + "filename": "Pirates of the Caribbean III - At Worlds End/chd-potc3-dts-bdrip.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8517696525", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-11-20T16:41:01.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Reencode by DVDSharer@CHD联盟" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "英语" + }, + "time_base": "1/1000" + } + ] + }, + "DamNation (2014)/DamNation.2014.1080p.WEB-DL.AAC2.0.H264-RARBG.mkv": { + "format": { + "bit_rate": "4715043", + "duration": "5287.680000", + "filename": "DamNation (2014)/DamNation.2014.1080p.WEB-DL.AAC2.0.H264-RARBG.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3116454961", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-06-24T10:04:27.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "RARBG.COM - DamNation.2014.1080p.WEB-DL.AAC2.0.H264-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "DamNation.2014.1080p.WEB-DL.AAC2.0.H264-RARBG" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DamNation.2014.1080p.WEB-DL.AAC2.0.H264-RARBG" + }, + "time_base": "1/1000" + } + ] + }, + "Death Proof (2007)/Grindhouse-Death.Proof[2007][Unrated.Editon]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "862961", + "duration": "6813.980647", + "filename": "Death Proof (2007)/Grindhouse-Death.Proof[2007][Unrated.Editon]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735025152", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "741666", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 280, + "coded_width": 664, + "display_aspect_ratio": "83:35", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6813.980647", + "duration_ts": 163372, + "has_b_frames": 1, + "height": 280, + "index": 0, + "level": 5, + "nb_frames": "163372", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 664 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "283882", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "W Kamau Bell: Private School Negro (2018)/W. Kamau Bell Private School Negro 1080p WEB-DL.mkv": { + "format": { + "bit_rate": "3588309", + "duration": "3972.256000", + "filename": "W Kamau Bell: Private School Negro (2018)/W. Kamau Bell Private School Negro 1080p WEB-DL.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1781710516", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-07-04T23:52:58.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "01:06:12.256000000", + "NUMBER_OF_BYTES-eng": "95334144", + "NUMBER_OF_FRAMES-eng": "124133", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-04 23:52:58" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "3425939", + "DURATION-eng": "01:05:35.432000000", + "NUMBER_OF_BYTES-eng": "1685319007", + "NUMBER_OF_FRAMES-eng": "94356", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-04 23:52:58" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3972.256000", + "duration_ts": 3972256, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "96", + "DURATION-eng": "01:05:16.037000000", + "NUMBER_OF_BYTES-eng": "47364", + "NUMBER_OF_FRAMES-eng": "1104", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-04 23:52:58", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Wonder Woman (2017)/wonder.woman.2017.720p.brrip.x264.ac3-evo.mkv": { + "format": { + "bit_rate": "3191102", + "duration": "8475.968000", + "filename": "Wonder Woman (2017)/wonder.woman.2017.720p.brrip.x264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3380959931", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-09-05T07:55:59.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Die Hard 1/die.hard.1.-.cd2.avi": { + "format": { + "bit_rate": "1503045", + "duration": "3902.565172", + "filename": "Die Hard 1/die.hard.1.-.cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733216768", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "959/40", + "bit_rate": "1045718", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "40/959", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3902.565172", + "duration_ts": 93564, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "93564", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "959/40", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "40/959", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "218527903", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "The Twilight Saga New Moon (2009)/The.Twilight.Saga.New.Moon.2009.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "817819", + "duration": "7491.433333", + "filename": "The Twilight Saga New Moon (2009)/The.Twilight.Saga.New.Moon.2009.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "765829772", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-12-12T14:19:54.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64571", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7491.434667", + "duration_ts": 359588864, + "index": 0, + "max_bit_rate": "136824", + "nb_frames": "351161", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-12T14:19:54.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "749318", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7491.358875", + "duration_ts": 179792613, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "179613", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-12T14:19:59.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Sin City/Sin City.avi": { + "format": { + "bit_rate": "1576644", + "duration": "7440.231899", + "filename": "Sin City/Sin City.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1466325352", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-0.6.14" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1121954", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 608, + "display_aspect_ratio": "19:10", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7440.231899", + "duration_ts": 178387, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 3, + "nb_frames": "178387", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "416649238", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Hidden Figures (2016)/Hidden.Figures.2016.1080p.BluRay.DTS.x264-CyTSuNee.mkv": { + "format": { + "bit_rate": "8976012", + "duration": "7603.054000", + "filename": "Hidden Figures (2016)/Hidden.Figures.2016.1080p.BluRay.DTS.x264-CyTSuNee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8530638670", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-22T16:29:59.000000Z", + "encoder": "libebml v0.7.9 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7603.054000", + "duration_ts": 7603054, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "K-PAX (2001)/K-PAX.2001.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1217622", + "duration": "6941.311667", + "filename": "K-PAX (2001)/K-PAX.2001.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1056486758", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-09-21T09:10:50.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64502", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6941.312000", + "duration_ts": 333182976, + "index": 0, + "max_bit_rate": "73648", + "nb_frames": "325374", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-09-21T09:10:50.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1149199", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6941.225958", + "duration_ts": 166589423, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "166423", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-09-21T09:10:55.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Bad Times At The El Royale (2018)/a588ad4df7494ed19162e98a3acb2f28.mkv": { + "format": { + "bit_rate": "4920960", + "duration": "8531.649000", + "filename": "Bad Times At The El Royale (2018)/a588ad4df7494ed19162e98a3acb2f28.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "5247988804", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-12-18T07:16:29.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Bad.Times.at.the.El.Royale.2018.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS-eng": "4536620", + "DURATION-eng": "02:22:11.606000000", + "NUMBER_OF_BYTES-eng": "4838082654", + "NUMBER_OF_FRAMES-eng": "204554", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-18 07:16:29", + "language": "eng", + "title": "Bad.Times.at.the.El.Royale.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:21:37.632000000", + "NUMBER_OF_BYTES-eng": "407886336", + "NUMBER_OF_FRAMES-eng": "265551", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-18 07:16:29", + "language": "eng", + "title": "Bad.Times.at.the.El.Royale.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8531.649000", + "duration_ts": 767848410, + "has_b_frames": 0, + "height": 120, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8531.649000", + "duration_ts": 767848410, + "has_b_frames": 0, + "height": 882, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8531.649000", + "duration_ts": 767848410, + "has_b_frames": 0, + "height": 600, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8531.649000", + "duration_ts": 767848410, + "has_b_frames": 0, + "height": 176, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + } + ] + }, + "Tears of Steel (2012)/ToS-4k-1920.mov": { + "format": { + "bit_rate": "8051316", + "duration": "734.167000", + "filename": "Tears of Steel (2012)/ToS-4k-1920.mov", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "738876331", + "start_time": "0.000000", + "tags": { + "compatible_brands": "qt ", + "encoder": "Lavf54.29.104", + "major_brand": "qt ", + "minor_version": "512" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bit_rate": "7862427", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "734.166667", + "duration_ts": 17620, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "17620", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "encoder": "libx264", + "handler_name": "DataHandler", + "language": "eng" + }, + "time_base": "1/24", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "182815", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "734.122993", + "duration_ts": 32374824, + "index": 1, + "max_bit_rate": "192000", + "nb_frames": "31616", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "DataHandler", + "language": "eng" + }, + "time_base": "1/44100" + } + ] + }, + "Robin Williams Come Inside My Mind (2018)/Robin.Williams.Come.Inside.My.Mind.2018.720p.AMZN.WEB-DL.DD+5.1.H.264-monkee.mkv": { + "format": { + "bit_rate": "2802636", + "duration": "6993.857000", + "filename": "Robin Williams Come Inside My Mind (2018)/Robin.Williams.Come.Inside.My.Mind.2018.720p.AMZN.WEB-DL.DD+5.1.H.264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2450155201", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2160498", + "DURATION-eng": "01:56:33.821000000", + "NUMBER_OF_BYTES-eng": "1888767387", + "NUMBER_OF_FRAMES-eng": "167684", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-17 00:14:02" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 1, + "start_time": "0.001000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:56:33.856000000", + "NUMBER_OF_BYTES-eng": "559508480", + "NUMBER_OF_FRAMES-eng": "218558", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-17 00:14:02", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6993.857000", + "duration_ts": 6993857, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "93", + "DURATION-eng": "01:56:16.959000000", + "NUMBER_OF_BYTES-eng": "81897", + "NUMBER_OF_FRAMES-eng": "2256", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-17 00:14:02", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6993.857000", + "duration_ts": 6993857, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "98", + "DURATION-eng": "01:56:16.959000000", + "NUMBER_OF_BYTES-eng": "86008", + "NUMBER_OF_FRAMES-eng": "2380", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-17 00:14:02", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Die Hard 2 - Die Harder/die.hard.2.-.cd2.avi": { + "format": { + "bit_rate": "1735274", + "duration": "3370.594369", + "filename": "Die Hard 2 - Die Harder/die.hard.2.-.cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731113472", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "959/40", + "bit_rate": "1277947", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "40/959", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3370.594369", + "duration_ts": 80810, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "80810", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "959/40", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "40/959", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "188739936", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Toy Story (1995)/Toy.Story.1995.Bluray.720p.H264.mp4": { + "format": { + "bit_rate": "1555272", + "duration": "4864.916667", + "filename": "Toy Story (1995)/Toy.Story.1995.Bluray.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "945784072", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2016-09-17T09:25:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64572", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4864.917333", + "duration_ts": 233516032, + "index": 0, + "max_bit_rate": "127920", + "nb_frames": "228043", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-17T09:25:15.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1486788", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4864.860000", + "duration_ts": 116756640, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "116640", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2016-09-17T09:25:18.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Star Wars Episode II Attack Of The Clones (2002)/star.wars.episode.II.attack.of.the.clones.2002.720p.bluray.x264-nezu.mkv": { + "format": { + "bit_rate": "1294479", + "duration": "8547.913000", + "filename": "Star Wars Episode II Attack Of The Clones (2002)/star.wars.episode.II.attack.of.the.clones.2002.720p.bluray.x264-nezu.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1383137595", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-12-18T19:11:16.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1102445", + "BPS-eng": "1102445", + "DURATION": "02:22:27.831000000", + "DURATION-eng": "02:22:27.831000000", + "NUMBER_OF_BYTES": "1177939668", + "NUMBER_OF_BYTES-eng": "1177939668", + "NUMBER_OF_FRAMES": "204943", + "NUMBER_OF_FRAMES-eng": "204943", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-18 19:11:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-18 19:11:16", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "189769", + "BPS-eng": "189769", + "DURATION": "02:22:27.904000000", + "DURATION-eng": "02:22:27.904000000", + "NUMBER_OF_BYTES": "202766503", + "NUMBER_OF_BYTES-eng": "202766503", + "NUMBER_OF_FRAMES": "400683", + "NUMBER_OF_FRAMES-eng": "400683", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-18 19:11:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-18 19:11:16", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8547.913000", + "duration_ts": 8547913, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "42", + "BPS-eng": "42", + "DURATION": "02:11:40.873000000", + "DURATION-eng": "02:11:40.873000000", + "NUMBER_OF_BYTES": "41996", + "NUMBER_OF_BYTES-eng": "41996", + "NUMBER_OF_FRAMES": "1219", + "NUMBER_OF_FRAMES-eng": "1219", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-18 19:11:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-18 19:11:16", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8547.913000", + "duration_ts": 8547913, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:55:54.113000000", + "DURATION-eng": "01:55:54.113000000", + "NUMBER_OF_BYTES": "567", + "NUMBER_OF_BYTES-eng": "567", + "NUMBER_OF_FRAMES": "16", + "NUMBER_OF_FRAMES-eng": "16", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.6.1 ('Flying') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-18 19:11:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-18 19:11:16", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "In the Line of Fire (1993)/In.the.Line.of.Fire.1993.DVDRip.XviD.AC3[5.1].AR.cd1.avi": { + "format": { + "bit_rate": "1499353", + "duration": "3918.414500", + "filename": "In the Line of Fire (1993)/In.the.Line.of.Fire.1993.DVDRip.XviD.AC3[5.1].AR.cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734386176", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1044639", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 704, + "display_aspect_ratio": "44:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3918.414500", + "duration_ts": 93948, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "93948", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "219431212", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Tracy Morgan Staying Alive (2017)/tracy.morgan.staying.alive.2017.720p.webrip.x264-jawn.mkv": { + "format": { + "bit_rate": "2729687", + "duration": "3516.704000", + "filename": "Tracy Morgan Staying Alive (2017)/tracy.morgan.staying.alive.2017.720p.webrip.x264-jawn.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1199937651", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-16T15:49:46.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 674, + "coded_width": 1280, + "display_aspect_ratio": "640:337", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 674, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2343887", + "BPS-eng": "2343887", + "DURATION": "00:58:36.263000000", + "DURATION-eng": "00:58:36.263000000", + "NUMBER_OF_BYTES": "1030215497", + "NUMBER_OF_BYTES-eng": "1030215497", + "NUMBER_OF_FRAMES": "84306", + "NUMBER_OF_FRAMES-eng": "84306", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 15:49:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 15:49:46", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "00:58:36.704000000", + "DURATION-eng": "00:58:36.704000000", + "NUMBER_OF_BYTES": "168801792", + "NUMBER_OF_BYTES-eng": "168801792", + "NUMBER_OF_FRAMES": "109897", + "NUMBER_OF_FRAMES-eng": "109897", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 15:49:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 15:49:46", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3516.704000", + "duration_ts": 3516704, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "101", + "BPS-eng": "101", + "DURATION": "00:58:07.484000000", + "DURATION-eng": "00:58:07.484000000", + "NUMBER_OF_BYTES": "44276", + "NUMBER_OF_BYTES-eng": "44276", + "NUMBER_OF_FRAMES": "1009", + "NUMBER_OF_FRAMES-eng": "1009", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 15:49:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 15:49:46", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3516.704000", + "duration_ts": 3516704, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "98", + "BPS-eng": "98", + "DURATION": "00:55:59.272000000", + "DURATION-eng": "00:55:59.272000000", + "NUMBER_OF_BYTES": "41424", + "NUMBER_OF_BYTES-eng": "41424", + "NUMBER_OF_FRAMES": "933", + "NUMBER_OF_FRAMES-eng": "933", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 15:49:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 15:49:46", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Stand By Me/Stand By Me.avi": { + "format": { + "bit_rate": "1137861", + "duration": "5320.632000", + "filename": "Stand By Me/Stand By Me.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "756767796", + "start_time": "0.000000", + "tags": { + "encoder": "MEncoder 1.0pre7try2-3.3.6" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "954978", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "display_aspect_ratio": "2048:1151", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5320.186854", + "duration_ts": 159446, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 3, + "nb_frames": "159446", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "4096:3453", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "169112", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5320.632000", + "duration_ts": 221693, + "index": 1, + "nb_frames": "221693", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Happiest Baby on the Block (2002)/The_Happiest_Baby_on_the_Block-DVDrip.avi": { + "format": { + "bit_rate": "1135718", + "duration": "2305.136167", + "filename": "The Happiest Baby on the Block (2002)/The_Happiest_Baby_on_the_Block-DVDrip.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "327248190", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "995531", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "2305.136167", + "duration_ts": 55268, + "has_b_frames": 0, + "height": 480, + "index": 0, + "level": 1, + "nb_frames": "55268", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "88242", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Army Of Darkness (1992)/creep-armyofdarknessremastered720.mkv": { + "format": { + "bit_rate": "7026018", + "duration": "5331.296000", + "filename": "Army Of Darkness (1992)/creep-armyofdarknessremastered720.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4682222784", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-14T16:16:00.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6384064", + "BPS-eng": "6384064", + "DURATION": "01:28:51.284000000", + "DURATION-eng": "01:28:51.284000000", + "NUMBER_OF_BYTES": "4254407495", + "NUMBER_OF_BYTES-eng": "4254407495", + "NUMBER_OF_FRAMES": "127823", + "NUMBER_OF_FRAMES-eng": "127823", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-14 16:16:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-14 16:16:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:28:51.296000000", + "DURATION-eng": "01:28:51.296000000", + "NUMBER_OF_BYTES": "426503680", + "NUMBER_OF_BYTES-eng": "426503680", + "NUMBER_OF_FRAMES": "166603", + "NUMBER_OF_FRAMES-eng": "166603", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-14 16:16:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-14 16:16:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5331.296000", + "duration_ts": 5331296, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:22:37.786000000", + "DURATION-eng": "01:22:37.786000000", + "NUMBER_OF_BYTES": "18297", + "NUMBER_OF_BYTES-eng": "18297", + "NUMBER_OF_FRAMES": "593", + "NUMBER_OF_FRAMES-eng": "593", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-14 16:16:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-14 16:16:00", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Good Shepherd/The Good Shepherd.avi": { + "format": { + "bit_rate": "752330", + "duration": "10050.592259", + "filename": "The Good Shepherd/The Good Shepherd.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "945170432", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "631022", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 226, + "coded_width": 560, + "display_aspect_ratio": "280:113", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "10050.592259", + "duration_ts": 240973, + "has_b_frames": 1, + "height": 226, + "index": 0, + "level": 5, + "nb_frames": "240973", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 560 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "418775", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Futurama Into The Wild Green Yonder/futurama.into.the.wild.green.yonder.dvdrip.xvid..avi": { + "format": { + "bit_rate": "1097960", + "duration": "5352.972625", + "filename": "Futurama Into The Wild Green Yonder/futurama.into.the.wild.green.yonder.dvdrip.xvid..avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734668794", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "957099", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5352.972625", + "duration_ts": 128343, + "has_b_frames": 0, + "height": 368, + "index": 0, + "level": 3, + "nb_frames": "128343", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "223040", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Fantastic Four (2005)/Fantastic Four 2005.mp4": { + "format": { + "bit_rate": "2575702", + "duration": "6329.344000", + "filename": "Fantastic Four (2005)/Fantastic Four 2005.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2037813687", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2011-11-04T00:39:38.000000Z", + "encoder": "HandBrake 4249svn 2011092501", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "75866500/3164599", + "bit_rate": "2186387", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "3164599/151733000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6329.198000", + "duration_ts": 569627820, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "151733", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-04T00:39:38.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "383872", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6329.344000", + "duration_ts": 303808512, + "index": 1, + "max_bit_rate": "651376", + "nb_frames": "296688", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-04T00:39:38.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Addams Family/The Addams Family.avi": { + "format": { + "bit_rate": "976771", + "duration": "5976.393060", + "filename": "The Addams Family/The Addams Family.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "729696256", + "start_time": "0.000000", + "tags": { + "artist": "Gutternuts", + "comment": "", + "copyright": "EliteMedia", + "title": "The Addams Family 1991" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "849738", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5976.393060", + "duration_ts": 143290, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "143290", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114664", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5976.267755", + "duration_ts": 228779, + "index": 1, + "nb_frames": "228779", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "The Rules Of Attraction (2002)/The Rules Of Attraction.2002.BRRip.x264-VLiS.mkv": { + "format": { + "bit_rate": "1530522", + "duration": "6643.285000", + "filename": "The Rules Of Attraction (2002)/The Rules Of Attraction.2002.BRRip.x264-VLiS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 9, + "probe_score": 100, + "size": "1270962155", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-07-02T17:18:05.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 400, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.285000", + "duration_ts": 6643285, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + } + ] + }, + "Friday (1995)/friday-pfa.avi": { + "format": { + "bit_rate": "1108032", + "duration": "5260.320000", + "filename": "Friday (1995)/friday-pfa.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "728576000", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "934949", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5260.320000", + "duration_ts": 131508, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "131508", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160176", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5260.320000", + "duration_ts": 219180, + "index": 1, + "nb_frames": "219180", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Avengers (2012)/The.Avengers.2012.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2200245", + "duration": "8574.896667", + "filename": "The Avengers (2012)/The.Avengers.2012.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2358359343", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-08-21T16:52:50.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2102870", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8573.856958", + "duration_ts": 823090268, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "205567", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-08-21T16:52:50.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93909", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8574.897052", + "duration_ts": 378152960, + "index": 1, + "max_bit_rate": "139912", + "nb_frames": "369290", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-08-21T16:53:34.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/44100" + } + ] + }, + "The Chronicles Of Riddick/The Chronicles Of Riddick.avi": { + "format": { + "bit_rate": "991303", + "duration": "8044.327958", + "filename": "The Chronicles Of Riddick/The Chronicles Of Riddick.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "996796416", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "862046", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8044.327958", + "duration_ts": 192871, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "192871", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116552", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8044.320000", + "duration_ts": 335180, + "index": 1, + "nb_frames": "335180", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Queen of the Damned/Queen of the Damned.avi": { + "format": { + "bit_rate": "963190", + "duration": "6088.046380", + "filename": "Queen of the Damned/Queen of the Damned.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732993536", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "821105", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6088.046380", + "duration_ts": 145967, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "145967", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129368", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6087.984000", + "duration_ts": 253666, + "index": 1, + "nb_frames": "253666", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "City Of Ember (2008)/City.Of.Ember[2008]DvDrip-aXXo .avi": { + "format": { + "bit_rate": "1031216", + "duration": "5711.920254", + "filename": "City Of Ember (2008)/City.Of.Ember[2008]DvDrip-aXXo .avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736278528", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "893908", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 696, + "display_aspect_ratio": "29:12", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5711.920254", + "duration_ts": 136949, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "136949", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 696 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "237997", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Fantastic 4 Rise of the Silver Surfer (2007)/Fantastic Four 2007 Rise of the Silver Surfer.mp4": { + "format": { + "bit_rate": "2580596", + "duration": "5511.360000", + "filename": "Fantastic 4 Rise of the Silver Surfer (2007)/Fantastic Four 2007 Rise of the Silver Surfer.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1777824349", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2011-11-04T02:55:48.000000Z", + "encoder": "HandBrake 4249svn 2011092501", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1321370000/55112557", + "bit_rate": "2191187", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "44417736/2129905307", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5511.255700", + "duration_ts": 496013013, + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "132137", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-04T02:55:48.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "383934", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5511.360000", + "duration_ts": 264545280, + "index": 1, + "max_bit_rate": "652720", + "nb_frames": "258345", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-04T02:55:48.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Thor (2011)/Thor.2011.720p.BrRip.264.YIFY.mp4": { + "format": { + "bit_rate": "856759", + "duration": "6890.793333", + "filename": "Thor (2011)/Thor.2011.720p.BrRip.264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "737969465", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-08-27T10:05:19.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "821970", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6890.633750", + "duration_ts": 661500840, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "165210", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 12012, + "start_time": "0.125125", + "tags": { + "creation_time": "2011-08-27T10:05:19.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "31960", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6890.794667", + "duration_ts": 165379072, + "index": 1, + "max_bit_rate": "61080", + "nb_frames": "161503", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-27T10:06:24.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "The Foreigner (2017)/The.Foreigner.2017.1080p.BluRay.x264-nikt0.mkv": { + "format": { + "bit_rate": "6199454", + "duration": "6832.081000", + "filename": "The Foreigner (2017)/The.Foreigner.2017.1080p.BluRay.x264-nikt0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5294396847", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-02-01T17:13:22Z", + "ENCODER": "Lavf57.7.2", + "title": "The.Foreigner.2017.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "5749515", + "BPS-eng": "5749515", + "DURATION": "01:53:52.076000000", + "DURATION-eng": "01:53:52.076000000", + "NUMBER_OF_BYTES": "4910141232", + "NUMBER_OF_BYTES-eng": "4910141232", + "NUMBER_OF_FRAMES": "163806", + "NUMBER_OF_FRAMES-eng": "163806", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-02 00:15:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-02 00:15:33" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:53:52.064000000", + "DURATION-eng": "01:53:52.064000000", + "NUMBER_OF_BYTES": "382595584", + "NUMBER_OF_BYTES-eng": "382595584", + "NUMBER_OF_FRAMES": "213502", + "NUMBER_OF_FRAMES-eng": "213502", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-02 00:15:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-02 00:15:33", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6832.081000", + "duration_ts": 6832081, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:44:38.355000000", + "DURATION-eng": "01:44:38.355000000", + "NUMBER_OF_BYTES": "46420", + "NUMBER_OF_BYTES-eng": "46420", + "NUMBER_OF_FRAMES": "1392", + "NUMBER_OF_FRAMES-eng": "1392", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-02 00:15:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-02 00:15:33", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "From Dusk Til Dawn/From Dusk Til Dawn.avi": { + "format": { + "bit_rate": "958778", + "duration": "6213.280000", + "filename": "From Dusk Til Dawn/From Dusk Til Dawn.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "744644608", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "825701", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 400, + "coded_width": 704, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6213.280000", + "duration_ts": 155332, + "has_b_frames": 0, + "height": 400, + "index": 0, + "level": -99, + "nb_frames": "155332", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Videostream" + }, + "time_base": "1/25", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "99408000", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audiostream 1" + }, + "time_base": "1/16000" + } + ] + }, + "Transformers Age Of Extinction (2014)/Transformers.Age.of.Extinction.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1961176", + "duration": "9907.391667", + "filename": "Transformers Age Of Extinction (2014)/Transformers.Age.of.Extinction.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2428767917", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-09-19T09:46:34.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1863509", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9907.272375", + "duration_ts": 237774537, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "237537", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-09-19T09:46:34.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93654", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9907.392000", + "duration_ts": 475554816, + "index": 1, + "max_bit_rate": "107576", + "nb_frames": "464409", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-09-19T09:46:56.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Star Trek 2 - Wrath Of Kahn (1982)/Star Trek 02 Wrath Of Khan 1982 1280x528.mp4": { + "format": { + "bit_rate": "2250739", + "duration": "6781.845333", + "filename": "Star Trek 2 - Wrath Of Kahn (1982)/Star Trek 02 Wrath Of Khan 1982 1280x528.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1908020586", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-14T20:10:28.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1990796", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6781.775000", + "duration_ts": 610359750, + "has_b_frames": 1, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "162600", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-14T20:10:28.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255415", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6781.845333", + "duration_ts": 325528576, + "index": 1, + "max_bit_rate": "357192", + "nb_frames": "317899", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-14T20:10:28.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Kill Bill Vol 1 (2003)/Kill.Bill.Vol.2.2004.iNTERNAL.720p.BluRay.x264-LiBRARiANS.mkv": { + "format": { + "bit_rate": "4877380", + "duration": "6643.679000", + "filename": "Kill Bill Vol 1 (2003)/Kill.Bill.Vol.2.2004.iNTERNAL.720p.BluRay.x264-LiBRARiANS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 9, + "probe_score": 100, + "size": "4050468917", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-07-04T17:38:04.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4218319", + "BPS-eng": "4218319", + "DURATION": "01:50:43.679000000", + "DURATION-eng": "01:50:43.679000000", + "NUMBER_OF_BYTES": "3503145281", + "NUMBER_OF_BYTES-eng": "3503145281", + "NUMBER_OF_FRAMES": "159289", + "NUMBER_OF_FRAMES-eng": "159289", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:50:43.648000000", + "DURATION-eng": "01:50:43.648000000", + "NUMBER_OF_BYTES": "531491840", + "NUMBER_OF_BYTES-eng": "531491840", + "NUMBER_OF_FRAMES": "207614", + "NUMBER_OF_FRAMES-eng": "207614", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1545", + "BPS-eng": "1545", + "DURATION": "01:27:11.809000000", + "DURATION-eng": "01:27:11.809000000", + "NUMBER_OF_BYTES": "1010777", + "NUMBER_OF_BYTES-eng": "1010777", + "NUMBER_OF_FRAMES": "315", + "NUMBER_OF_FRAMES-eng": "315", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3995", + "BPS-eng": "3995", + "DURATION": "01:42:36.150000000", + "DURATION-eng": "01:42:36.150000000", + "NUMBER_OF_BYTES": "3074809", + "NUMBER_OF_BYTES-eng": "3074809", + "NUMBER_OF_FRAMES": "1738", + "NUMBER_OF_FRAMES-eng": "1738", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "895", + "BPS-eng": "895", + "DURATION": "01:41:46.225000000", + "DURATION-eng": "01:41:46.225000000", + "NUMBER_OF_BYTES": "683648", + "NUMBER_OF_BYTES-eng": "683648", + "NUMBER_OF_FRAMES": "341", + "NUMBER_OF_FRAMES-eng": "341", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3353", + "BPS-eng": "3353", + "DURATION": "01:42:37.068000000", + "DURATION-eng": "01:42:37.068000000", + "NUMBER_OF_BYTES": "2580897", + "NUMBER_OF_BYTES-eng": "2580897", + "NUMBER_OF_FRAMES": "1228", + "NUMBER_OF_FRAMES-eng": "1228", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2777", + "BPS-eng": "2777", + "DURATION": "01:42:37.068000000", + "DURATION-eng": "01:42:37.068000000", + "NUMBER_OF_BYTES": "2137910", + "NUMBER_OF_BYTES-eng": "2137910", + "NUMBER_OF_FRAMES": "933", + "NUMBER_OF_FRAMES-eng": "933", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2525", + "BPS-eng": "2525", + "DURATION": "01:42:36.067000000", + "DURATION-eng": "01:42:36.067000000", + "NUMBER_OF_BYTES": "1943232", + "NUMBER_OF_BYTES-eng": "1943232", + "NUMBER_OF_FRAMES": "1244", + "NUMBER_OF_FRAMES-eng": "1244", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6643.679000", + "duration_ts": 6643679, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3493", + "BPS-eng": "3493", + "DURATION": "01:42:37.318000000", + "DURATION-eng": "01:42:37.318000000", + "NUMBER_OF_BYTES": "2689083", + "NUMBER_OF_BYTES-eng": "2689083", + "NUMBER_OF_FRAMES": "1245", + "NUMBER_OF_FRAMES-eng": "1245", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-04 17:38:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-04 17:38:04", + "language": "chi" + }, + "time_base": "1/1000" + } + ] + }, + "Dave Chappelle Sticks And Stones (2019)/c3a4d2ac239e4bdc969238460aaedd0b.mkv": { + "format": { + "bit_rate": "2920579", + "duration": "3932.471000", + "filename": "Dave Chappelle Sticks And Stones (2019)/c3a4d2ac239e4bdc969238460aaedd0b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 32, + "probe_score": 100, + "size": "1435636912", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-26T09:35:41.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2145975", + "DURATION-eng": "01:05:32.471000000", + "NUMBER_OF_BYTES-eng": "1054873131", + "NUMBER_OF_FRAMES-eng": "94285", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "768000", + "DURATION-eng": "01:05:32.416000000", + "NUMBER_OF_BYTES-eng": "377511936", + "NUMBER_OF_FRAMES-eng": "122888", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "85", + "DURATION-eng": "01:04:59.312000000", + "NUMBER_OF_BYTES-eng": "41856", + "NUMBER_OF_FRAMES-eng": "1037", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "95", + "DURATION-eng": "01:05:19.833000000", + "NUMBER_OF_BYTES-eng": "46695", + "NUMBER_OF_FRAMES-eng": "1396", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "129", + "DURATION-eng": "01:03:17.085000000", + "NUMBER_OF_BYTES-eng": "61687", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "72", + "DURATION-eng": "01:04:58.770000000", + "NUMBER_OF_BYTES-eng": "35159", + "NUMBER_OF_FRAMES-eng": "943", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "01:05:16.455000000", + "NUMBER_OF_BYTES-eng": "32827", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:05:16.455000000", + "NUMBER_OF_BYTES-eng": "33613", + "NUMBER_OF_FRAMES-eng": "971", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "125", + "DURATION-eng": "01:04:59.062000000", + "NUMBER_OF_BYTES-eng": "61036", + "NUMBER_OF_FRAMES-eng": "960", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "01:05:00.105000000", + "NUMBER_OF_BYTES-eng": "33122", + "NUMBER_OF_FRAMES-eng": "911", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "01:05:16.455000000", + "NUMBER_OF_BYTES-eng": "33090", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "66", + "DURATION-eng": "01:04:52.889000000", + "NUMBER_OF_BYTES-eng": "32531", + "NUMBER_OF_FRAMES-eng": "759", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "69", + "DURATION-eng": "01:05:01.398000000", + "NUMBER_OF_BYTES-eng": "33738", + "NUMBER_OF_FRAMES-eng": "938", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "107", + "DURATION-eng": "01:04:59.688000000", + "NUMBER_OF_BYTES-eng": "52454", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "66", + "DURATION-eng": "01:05:16.455000000", + "NUMBER_OF_BYTES-eng": "32369", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "73", + "DURATION-eng": "01:04:59.187000000", + "NUMBER_OF_BYTES-eng": "35758", + "NUMBER_OF_FRAMES-eng": "924", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "72", + "DURATION-eng": "01:03:16.793000000", + "NUMBER_OF_BYTES-eng": "34536", + "NUMBER_OF_FRAMES-eng": "929", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:05:21.293000000", + "NUMBER_OF_BYTES-eng": "33513", + "NUMBER_OF_FRAMES-eng": "806", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "90", + "DURATION-eng": "01:04:59.437000000", + "NUMBER_OF_BYTES-eng": "43951", + "NUMBER_OF_FRAMES-eng": "965", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "01:04:59.395000000", + "NUMBER_OF_BYTES-eng": "33110", + "NUMBER_OF_FRAMES-eng": "905", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "71", + "DURATION-eng": "01:03:17.127000000", + "NUMBER_OF_BYTES-eng": "33837", + "NUMBER_OF_FRAMES-eng": "966", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "76", + "DURATION-eng": "01:03:17.085000000", + "NUMBER_OF_BYTES-eng": "36219", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "71", + "DURATION-eng": "01:04:58.937000000", + "NUMBER_OF_BYTES-eng": "34819", + "NUMBER_OF_FRAMES-eng": "808", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "72", + "DURATION-eng": "01:03:16.751000000", + "NUMBER_OF_BYTES-eng": "34632", + "NUMBER_OF_FRAMES-eng": "929", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:03:17.085000000", + "NUMBER_OF_BYTES-eng": "38292", + "NUMBER_OF_FRAMES-eng": "968", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "127", + "DURATION-eng": "01:03:25.969000000", + "NUMBER_OF_BYTES-eng": "60689", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "65", + "DURATION-eng": "01:05:16.455000000", + "NUMBER_OF_BYTES-eng": "32008", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "178", + "DURATION-eng": "01:03:17.085000000", + "NUMBER_OF_BYTES-eng": "84589", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "77", + "DURATION-eng": "01:03:17.085000000", + "NUMBER_OF_BYTES-eng": "36875", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "107", + "DURATION-eng": "01:03:17.127000000", + "NUMBER_OF_BYTES-eng": "51055", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "vie" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "73", + "DURATION-eng": "01:05:01.773000000", + "NUMBER_OF_BYTES-eng": "35697", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3932.471000", + "duration_ts": 3932471, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "74", + "DURATION-eng": "01:05:01.564000000", + "NUMBER_OF_BYTES-eng": "36555", + "NUMBER_OF_FRAMES-eng": "972", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-26 09:35:41", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Thunderheart (1992)/ThunderHeart {kickasstorrents.net} {gkline}.avi": { + "format": { + "bit_rate": "1039245", + "duration": "7158.067583", + "filename": "Thunderheart (1992)/ThunderHeart {kickasstorrents.net} {gkline}.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "929873920", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "917888", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7158.067583", + "duration_ts": 171622, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "171622", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "298253", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Ying xiong [Hero] (2002)/Hero(Xvid)(Darkside_RG).avi": { + "format": { + "bit_rate": "2050088", + "duration": "5726.088000", + "filename": "Ying xiong [Hero] (2002)/Hero(Xvid)(Darkside_RG).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1467373568", + "start_time": "0.000000", + "tags": { + "IAS1": "Chinese", + "IAS2": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1474006", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5726.080000", + "duration_ts": 143152, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "143152", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "320126464", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113560", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5726.088000", + "duration_ts": 238587, + "index": 2, + "nb_frames": "238587", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Kids in the Hall Brain Candy (1996)/Brain Candy - Kids in the Hall [1996] dir Kelly Makin.avi": { + "format": { + "bit_rate": "1103974", + "duration": "5304.888222", + "filename": "Kids in the Hall Brain Candy (1996)/Brain Candy - Kids in the Hall [1996] dir Kelly Makin.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732057600", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "971445", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5304.888222", + "duration_ts": 127190, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "127190", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "119816", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5304.840000", + "duration_ts": 221035, + "index": 1, + "nb_frames": "221035", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Captain America - The First Avenger (2011)/Captain.America.The.First.Avenger.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1839975", + "duration": "7451.733333", + "filename": "Captain America - The First Avenger (2011)/Captain.America.The.First.Avenger.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1713875628", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-10-15T21:33:53.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1804799", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7451.569125", + "duration_ts": 715350636, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "178659", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-10-15T21:33:53.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "31963", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7451.733333", + "duration_ts": 178841600, + "index": 1, + "max_bit_rate": "57056", + "nb_frames": "174650", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-10-15T21:34:08.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "Meet the Fockers (2004)/Meet the Fockers.avi": { + "format": { + "bit_rate": "2051315", + "duration": "6807.019422", + "filename": "Meet the Fockers (2004)/Meet the Fockers.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1745418240", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "1914013", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "104271/2500000", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6807.019422", + "duration_ts": 163205, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "163205", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "128:129", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "104271/2500000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "283626", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Total Recall (2012)/Total.Recall.2012.Extended.Directors.Cut.TrueHD.AC3.MULTISUBS.720p.BluRay.x264.HQ-TUSAHD.mkv": { + "format": { + "bit_rate": "4902034", + "duration": "7816.351000", + "filename": "Total Recall (2012)/Total.Recall.2012.Extended.Directors.Cut.TrueHD.AC3.MULTISUBS.720p.BluRay.x264.HQ-TUSAHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 17, + "probe_score": 100, + "size": "4789502343", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100", + "title": "Total.Recall.2012.Extended.Directors.Cut.TrueHD.AC3.MULTISUBS.1080p.BluRay.x264.HQ-TUSAHD" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "display_aspect_ratio": "16256:6783", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "254:255", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:16.351000000", + "ENCODER": "Lavc57.64.100 libx264", + "language": "eng", + "title": "Total.Recall.2012.Extended.Directors.Cut.TrueHD.AC3.MULTISUBS.1080p.BluRay.x264.HQ-TUSAHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "TrueHD", + "codec_name": "truehd", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s32", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:16.333000000", + "language": "eng", + "title": "English TrueHD" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:16.320000000", + "language": "eng", + "title": "English AC3" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:09.549000000", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:09:54.030000000", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:09.549000000", + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:18.671000000", + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:09:53.991000000", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:09.549000000", + "language": "dut", + "title": "Dutch - Flemish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:18.670000000", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "00:01:30.909000000", + "language": "fre", + "title": "French forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:09.549000000", + "language": "hin", + "title": "Hindi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:00.716000000", + "language": "tam", + "title": "Tamil" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:00.716000000", + "language": "tam", + "title": "Tamil forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:00.716000000", + "language": "tel", + "title": "Telugu" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:00.716000000", + "language": "tel", + "title": "Telugu forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7816.351000", + "duration_ts": 7816351, + "height": 1080, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:02:18.671000000", + "language": "ara", + "title": "Arabic" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Babies (2010)/UsaBit.com_babies.2010.docu.dvdrip.xvid-amiable.avi": { + "format": { + "bit_rate": "1233921", + "duration": "4741.704000", + "filename": "Babies (2010)/UsaBit.com_babies.2010.docu.dvdrip.xvid-amiable.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731361280", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1090723", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 624, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4741.700033", + "duration_ts": 113687, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "113687", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130488", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4741.704000", + "duration_ts": 197571, + "index": 1, + "nb_frames": "197571", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Wont You Be My Neighbor (2018)/Wont.You.Be.My.Neighbor.2018.1080p.WEBRip.H264-str3n.mp4": { + "format": { + "bit_rate": "5771968", + "duration": "5667.296000", + "filename": "Wont You Be My Neighbor (2018)/Wont.You.Be.My.Neighbor.2018.1080p.WEBRip.H264-str3n.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "4088931675", + "start_time": "0.000000", + "tags": { + "artist": "Morgan Neville", + "compatible_brands": "mp42isom", + "compilation": "0", + "creation_time": "2018-08-21T23:41:40.000000Z", + "date": "2018-06-08", + "description": "From Academy Award-winning filmmaker Morgan Neville (Twenty Feet from Stardom), Won't You Be My", + "genre": "Documentary", + "hd_video": "2", + "iTunEXTC": "mpaa|PG-13|300|", + "major_brand": "mp42", + "media_type": "9", + "minor_version": "0", + "sort_artist": "Morgan Neville", + "sort_name": "Won't You Be My Neighbor?", + "synopsis": "From Academy Award-winning filmmaker Morgan Neville (Twenty Feet from Stardom), Won't You Be My Neighbor? takes an intimate look at America's favorite neighbor: Mister Fred Rogers. A portrait of a man whom we all think we know, this emotional and moving film takes us beyond the zip-up cardigans and the Neighborhood of Make-Believe, and into the heart of a creative genius who inspired generations of children with compassion and limitless imagination.", + "title": "Won't You Be My Neighbor?" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "120124", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5667.242667", + "duration_ts": 272027648, + "index": 0, + "max_bit_rate": "198232", + "nb_frames": "265652", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "2997/125", + "bit_rate": "5141183", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 1032, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:258", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5667.250584", + "duration_ts": 135878000, + "has_b_frames": 1, + "height": 1032, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "135878", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1000, + "start_time": "0.041708", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "encoder": "JVT/AVC Coding", + "language": "eng" + }, + "time_base": "1/23976", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "5667.296000", + "duration_ts": 272030208, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "177103", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "120139", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5667.242667", + "duration_ts": 272027648, + "index": 3, + "max_bit_rate": "190904", + "nb_frames": "265652", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5641.683350", + "duration_ts": 16908125, + "height": 1032, + "index": 4, + "nb_frames": "2769", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "spa" + }, + "time_base": "1/2997", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159", + "codec_long_name": "EIA-608 closed captions", + "codec_name": "eia_608", + "codec_tag": "0x38303663", + "codec_tag_string": "c608", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5661.889567", + "duration_ts": 169856687, + "height": 1032, + "index": 5, + "nb_frames": "2475", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "eng" + }, + "time_base": "1/30000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5641.683350", + "duration_ts": 16908125, + "height": 1032, + "index": 6, + "nb_frames": "2773", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "fra" + }, + "time_base": "1/2997", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "145", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5641.474808", + "duration_ts": 16907500, + "height": 1032, + "index": 7, + "nb_frames": "3121", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:40.000000Z", + "language": "eng" + }, + "time_base": "1/2997", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5667.296000", + "duration_ts": 5667296, + "index": 8, + "nb_frames": "20", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-21T23:41:43.000000Z", + "language": "und" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 1000, + "coded_width": 667, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "667:1000", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5667.296000", + "duration_ts": 510056640, + "has_b_frames": 0, + "height": 1000, + "index": 9, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 667 + } + ] + }, + "Big Fish (2003)/Big.Fish.BluRay.1080p.x264.5.1.Judas.mp4": { + "format": { + "bit_rate": "2539377", + "duration": "7509.290000", + "filename": "Big Fish (2003)/Big.Fish.BluRay.1080p.x264.5.1.Judas.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2383615473", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-16T16:50:32.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2238770", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7509.168333", + "duration_ts": 180220040, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "180040", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-16T16:50:32.000000Z", + "handler_name": "Video", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "80878", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7509.290667", + "duration_ts": 180222976, + "index": 1, + "max_bit_rate": "113656", + "nb_frames": "175999", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-16T16:50:58.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "215544", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7509.290667", + "duration_ts": 180222976, + "index": 2, + "max_bit_rate": "286984", + "nb_frames": "175999", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-16T16:51:00.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + } + ] + }, + "Toy Story 3 (2010)/Toy.Story.3.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "977603", + "duration": "6012.505000", + "filename": "Toy Story 3 (2010)/Toy.Story.3.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734730666", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2010-10-13T18:24:17.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64520", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6012.505397", + "duration_ts": 265151488, + "index": 0, + "max_bit_rate": "117992", + "nb_frames": "258937", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-13T18:24:17.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/44100" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "909769", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6012.423083", + "duration_ts": 144298154, + "has_b_frames": 1, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "144154", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2010-10-13T18:24:20.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "8 Mile/8 Mile.avi": { + "format": { + "bit_rate": "885961", + "duration": "6624.582916", + "filename": "8 Mile/8 Mile.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733640704", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "743512", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6624.582916", + "duration_ts": 158831, + "has_b_frames": 0, + "height": 256, + "index": 0, + "level": -99, + "nb_frames": "158831", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129736", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6624.504000", + "duration_ts": 276021, + "index": 1, + "nb_frames": "276021", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Highway Rat (2017)/b6d1f2fb563841cb854fd60ea4b493ec.mkv": { + "format": { + "bit_rate": "6165858", + "duration": "1517.920000", + "filename": "The Highway Rat (2017)/b6d1f2fb563841cb854fd60ea4b493ec.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1169910020", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Wrong Turn/Wrong Turn.avi": { + "format": { + "bit_rate": "1167111", + "duration": "5017.434828", + "filename": "Wrong Turn/Wrong Turn.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731987968", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "959/40", + "bit_rate": "1017628", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "40/959", + "codec_type": "video", + "coded_height": 304, + "coded_width": 576, + "display_aspect_ratio": "36:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5017.434828", + "duration_ts": 120293, + "has_b_frames": 0, + "height": 304, + "index": 0, + "level": 3, + "nb_frames": "120293", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "959/40", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "40/959", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "136744", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5017.416000", + "duration_ts": 209059, + "index": 1, + "nb_frames": "209059", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "I Am Mother (2019)/25a0eee626704dc6bfbcf7123a4dc5b2.mkv": { + "format": { + "bit_rate": "6395074", + "duration": "6812.576000", + "filename": "I Am Mother (2019)/25a0eee626704dc6bfbcf7123a4dc5b2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 29, + "probe_score": 100, + "size": "5445866359", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-07T07:10:30.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5751296", + "DURATION-eng": "01:53:32.334000000", + "NUMBER_OF_BYTES-eng": "4897469298", + "NUMBER_OF_FRAMES-eng": "163496", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:53:32.576000000", + "NUMBER_OF_BYTES-eng": "545006080", + "NUMBER_OF_FRAMES-eng": "212893", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36", + "DURATION-eng": "01:42:17.792000000", + "NUMBER_OF_BYTES-eng": "28381", + "NUMBER_OF_FRAMES-eng": "912", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "01:45:52.250000000", + "NUMBER_OF_BYTES-eng": "33487", + "NUMBER_OF_FRAMES-eng": "1156", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "40345", + "NUMBER_OF_FRAMES-eng": "898", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "25673", + "NUMBER_OF_FRAMES-eng": "897", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33", + "DURATION-eng": "01:44:57.750000000", + "NUMBER_OF_BYTES-eng": "26727", + "NUMBER_OF_FRAMES-eng": "898", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51", + "DURATION-eng": "01:45:03.125000000", + "NUMBER_OF_BYTES-eng": "40789", + "NUMBER_OF_FRAMES-eng": "889", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33", + "DURATION-eng": "01:44:57.875000000", + "NUMBER_OF_BYTES-eng": "26192", + "NUMBER_OF_FRAMES-eng": "885", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "24522", + "NUMBER_OF_FRAMES-eng": "893", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "23570", + "NUMBER_OF_FRAMES-eng": "896", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "25706", + "NUMBER_OF_FRAMES-eng": "864", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "37932", + "NUMBER_OF_FRAMES-eng": "889", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "26368", + "NUMBER_OF_FRAMES-eng": "860", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "24191", + "NUMBER_OF_FRAMES-eng": "890", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "21615", + "NUMBER_OF_FRAMES-eng": "908", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "30158", + "NUMBER_OF_FRAMES-eng": "894", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "24041", + "NUMBER_OF_FRAMES-eng": "899", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28", + "DURATION-eng": "01:44:57.750000000", + "NUMBER_OF_BYTES-eng": "22585", + "NUMBER_OF_FRAMES-eng": "826", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28", + "DURATION-eng": "01:46:56.166000000", + "NUMBER_OF_BYTES-eng": "22795", + "NUMBER_OF_FRAMES-eng": "845", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33", + "DURATION-eng": "01:44:57.750000000", + "NUMBER_OF_BYTES-eng": "26686", + "NUMBER_OF_FRAMES-eng": "886", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "24808", + "NUMBER_OF_FRAMES-eng": "887", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "31387", + "NUMBER_OF_FRAMES-eng": "898", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "23285", + "NUMBER_OF_FRAMES-eng": "775", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "63398", + "NUMBER_OF_FRAMES-eng": "896", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "25950", + "NUMBER_OF_FRAMES-eng": "899", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "36919", + "NUMBER_OF_FRAMES-eng": "899", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "vie" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "25737", + "NUMBER_OF_FRAMES-eng": "899", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6812.576000", + "duration_ts": 6812576, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29", + "DURATION-eng": "01:45:03.000000000", + "NUMBER_OF_BYTES-eng": "23049", + "NUMBER_OF_FRAMES-eng": "895", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-07 07:10:30", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Close Encounters of the Third Kind/Close Encounters of the Third Kind.avi": { + "format": { + "bit_rate": "1519848", + "duration": "8233.233233", + "filename": "Close Encounters of the Third Kind/Close Encounters of the Third Kind.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1564157952", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1364843", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 720, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8233.233233", + "duration_ts": 197400, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 3, + "nb_frames": "197400", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "142304", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8233.224000", + "duration_ts": 343051, + "index": 1, + "nb_frames": "343051", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Milk (2008) DVDSCR Occor avi/Milk (2008) DVDSCR Occor avi.avi": { + "format": { + "bit_rate": "1535714", + "duration": "7691.107774", + "filename": "Milk (2008) DVDSCR Occor avi/Milk (2008) DVDSCR Occor avi.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1476417988", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1270248", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 704, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7691.107774", + "duration_ts": 184402, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 3, + "nb_frames": "184402", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "246112327", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/32000" + } + ] + }, + "Lucy (2014)/Lucy 2014 720p WEB-DL x264 AAC-JYK.mkv": { + "format": { + "bit_rate": "2939641", + "duration": "5360.647000", + "filename": "Lucy (2014)/Lucy 2014 720p WEB-DL x264 AAC-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1969797237", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-11-08T23:38:31.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2749660", + "BPS-eng": "2749660", + "DURATION": "01:29:20.647000000", + "DURATION-eng": "01:29:20.647000000", + "NUMBER_OF_BYTES": "1842494998", + "NUMBER_OF_BYTES-eng": "1842494998", + "NUMBER_OF_FRAMES": "128527", + "NUMBER_OF_FRAMES-eng": "128527", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-11-08 23:38:31", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-11-08 23:38:31", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "198180", + "BPS-eng": "198180", + "DURATION": "01:24:40.108000000", + "DURATION-eng": "01:24:40.108000000", + "NUMBER_OF_BYTES": "125847507", + "NUMBER_OF_BYTES-eng": "125847507", + "NUMBER_OF_FRAMES": "218782", + "NUMBER_OF_FRAMES-eng": "218782", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-11-08 23:38:31", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-11-08 23:38:31", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "XXx (2002)/xXx.2002.1080p.BRrip.x264.GAZ.YIFY.mp4": { + "format": { + "bit_rate": "2060167", + "duration": "7084.095000", + "filename": "XXx (2002)/xXx.2002.1080p.BRrip.x264.GAZ.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1824303100", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-01T07:34:08.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1960760", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 798, + "coded_width": 1920, + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7084.035292", + "duration_ts": 170016847, + "has_b_frames": 2, + "height": 798, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "169847", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-03-01T07:34:08.000000Z", + "handler_name": "mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95989", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7084.096000", + "duration_ts": 340036608, + "index": 1, + "max_bit_rate": "130232", + "nb_frames": "332067", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-01T05:08:58.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Enter The Dragon (1973)/ad6a56c36aa04f679324788f3f1cdbef.mkv": { + "format": { + "bit_rate": "4484332", + "duration": "6153.184000", + "filename": "Enter The Dragon (1973)/ad6a56c36aa04f679324788f3f1cdbef.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3449115512", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2019-04-03T08:59:59.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "DURATION": "01:42:33.152000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:42:33.184000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6153.184000", + "duration_ts": 6153184, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:42:30.108000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Watchmen (2009)/Watchmen Ultimate Cut 2009 800p BRRip H264.mp4": { + "format": { + "bit_rate": "2492277", + "duration": "12926.143333", + "filename": "Watchmen (2009)/Watchmen Ultimate Cut 2009 800p BRRip H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4026941364", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2010-08-19T18:43:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1848407", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "12924.953708", + "duration_ts": 310198889, + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "309889", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2010-08-19T18:43:15.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (internal rev. 5)", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "191000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "12926.144000", + "duration_ts": 620454912, + "index": 1, + "max_bit_rate": "199144", + "nb_frames": "605913", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-08-19T18:43:53.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "447578", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "12926.144000", + "duration_ts": 620454912, + "index": 2, + "max_bit_rate": "462008", + "nb_frames": "605913", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-08-19T18:44:31.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "RoboCop (2014)/RoboCop.2014.WEB-DL.576p.H264.mp4": { + "format": { + "bit_rate": "742865", + "duration": "6758.313333", + "filename": "RoboCop (2014)/RoboCop.2014.WEB-DL.576p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "627564859", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2014-04-28T17:22:33.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64531", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6758.314667", + "duration_ts": 324399104, + "index": 0, + "max_bit_rate": "69936", + "nb_frames": "316796", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-04-28T17:22:33.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "674419", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 848, + "display_aspect_ratio": "53:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6758.251500", + "duration_ts": 162198036, + "has_b_frames": 2, + "height": 368, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "162036", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-04-28T17:22:38.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 848 + } + ] + }, + "Red 2 (2013)/Red.2.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2284973", + "duration": "6949.013333", + "filename": "Red 2 (2013)/Red.2.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1984789221", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-11-13T11:19:21.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2187178", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6948.900292", + "duration_ts": 166773607, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "166607", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-11-13T11:19:21.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93699", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6949.013333", + "duration_ts": 333552640, + "index": 1, + "max_bit_rate": "103552", + "nb_frames": "325735", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-13T11:19:34.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Wag The Dog (1997)/1de343a35d814d18b4d1f9eafc42b8c2.mkv": { + "format": { + "bit_rate": "7557605", + "duration": "5823.936000", + "filename": "Wag The Dog (1997)/1de343a35d814d18b4d1f9eafc42b8c2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5501876171", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-22T19:18:39.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7364371", + "DURATION-eng": "01:37:03.067000000", + "NUMBER_OF_BYTES-eng": "5360403450", + "NUMBER_OF_FRAMES-eng": "139614", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-22 19:18:39" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "01:37:03.936000000", + "NUMBER_OF_BYTES-eng": "139774464", + "NUMBER_OF_FRAMES-eng": "181998", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-22 19:18:39", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5823.936000", + "duration_ts": 5823936, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "108", + "DURATION-eng": "01:35:05.264000000", + "NUMBER_OF_BYTES-eng": "77096", + "NUMBER_OF_FRAMES-eng": "2633", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-22 19:18:39", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Oceans 11/Oceans 11.avi": { + "format": { + "bit_rate": "899783", + "duration": "6994.661328", + "filename": "Oceans 11/Oceans 11.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "786710528", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "777607", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6994.661328", + "duration_ts": 167704, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "167704", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "109472", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6994.656000", + "duration_ts": 291444, + "index": 1, + "nb_frames": "291444", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Aeon Flux/Aeon Flux.avi": { + "format": { + "bit_rate": "1054410", + "duration": "5573.239907", + "filename": "Aeon Flux/Aeon Flux.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734560256", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "855656", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 656, + "display_aspect_ratio": "41:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5573.239907", + "duration_ts": 133624, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "133624", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "133756555", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Mission Impossible Fallout (2018)/28cc2460fee54c4cad4664ae7169c0b7.mkv": { + "format": { + "bit_rate": "4433333", + "duration": "8861.354000", + "filename": "Mission Impossible Fallout (2018)/28cc2460fee54c4cad4664ae7169c0b7.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4910667126", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-06T14:14:18.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:27:24.512000000", + "NUMBER_OF_BYTES-eng": "424536576", + "NUMBER_OF_FRAMES-eng": "276391", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-06 14:14:18", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 674, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:337", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 674, + "index": 1, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS-eng": "4048225", + "DURATION-eng": "02:27:41.311000000", + "NUMBER_OF_BYTES-eng": "4484073427", + "NUMBER_OF_FRAMES-eng": "212460", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-06 14:14:18", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "Alice in Wonderland (2010)/Alice.in.Wonderland.2010.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "1777987", + "duration": "6514.858333", + "filename": "Alice in Wonderland (2010)/Alice.in.Wonderland.2010.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1447917097", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2012-12-25T13:27:32.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1662425", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6514.841667", + "duration_ts": 156356200, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "156200", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-25T12:21:35.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111754", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6514.858667", + "duration_ts": 312713216, + "index": 1, + "max_bit_rate": "124800", + "nb_frames": "305384", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-25T13:27:36.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Chasing Ice (2012)/7s-chasing-ice-1080p.mkv": { + "format": { + "bit_rate": "10381207", + "duration": "4514.709000", + "filename": "Chasing Ice (2012)/7s-chasing-ice-1080p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5858516543", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-06-12T04:44:10.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Pacific Rim 2 Uprising (2018)/Pacific Rim 2 Uprising 2018 1080p WEB-DL 6CH MkvCage.Com.mkv": { + "format": { + "bit_rate": "2240040", + "duration": "6641.012000", + "filename": "Pacific Rim 2 Uprising (2018)/Pacific Rim 2 Uprising 2018 1080p WEB-DL 6CH MkvCage.Com.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1859516962", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-05-17T02:55:39.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Pacific.Rim.2.Uprising.2018.1080p.WEB-DL.6CH.MkvCage.Com" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS-eng": "139318", + "DURATION-eng": "01:50:40.981000000", + "NUMBER_OF_BYTES-eng": "115651796", + "NUMBER_OF_FRAMES-eng": "155648", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-17 02:55:39", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 796, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2098829", + "DURATION-eng": "01:50:40.968000000", + "NUMBER_OF_BYTES-eng": "1742282504", + "NUMBER_OF_FRAMES-eng": "159224", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-17 02:55:39" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6641.012000", + "duration_ts": 6641012, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56", + "DURATION-eng": "01:40:09.792000000", + "NUMBER_OF_BYTES-eng": "42696", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-17 02:55:39", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Escape From The Planet of the Apes (1971)/Escape.From.The.Planet.of.the.Apes.1971.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1912398", + "duration": "5852.680000", + "filename": "Escape From The Planet of the Apes (1971)/Escape.From.The.Planet.of.the.Apes.1971.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1399081873", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-04T19:38:08.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1818069", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5852.680167", + "duration_ts": 140464324, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "140324", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-03-04T19:38:08.000000Z", + "handler_name": "From.The.Planet.of.the.Apes.1971.1080p.BrRip.x264.BOKUTOX.YIFY.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5749.909333", + "duration_ts": 275995648, + "index": 1, + "max_bit_rate": "102048", + "nb_frames": "269527", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-04T06:23:51.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Trolls (2016)/trolls.2016.1080p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4918690", + "duration": "5568.944000", + "filename": "Trolls (2016)/trolls.2016.1080p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3423988671", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-22T19:13:55.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 812, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:203", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 812, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Godzilla King Of The Monsters (2019)/31a8ae4bb6734fd88b3317fded495dd5.mkv": { + "format": { + "bit_rate": "9840990", + "duration": "7899.136000", + "filename": "Godzilla King Of The Monsters (2019)/31a8ae4bb6734fd88b3317fded495dd5.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "9716915118", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-13T07:13:29.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9198788", + "DURATION-eng": "02:11:39.100000000", + "NUMBER_OF_BYTES-eng": "9082768365", + "NUMBER_OF_FRAMES-eng": "189389", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-13 07:13:29" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:11:39.136000000", + "NUMBER_OF_BYTES-eng": "631930880", + "NUMBER_OF_FRAMES-eng": "246848", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-13 07:13:29", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7899.136000", + "duration_ts": 7899136, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "02:10:44.576000000", + "NUMBER_OF_BYTES-eng": "41876", + "NUMBER_OF_FRAMES-eng": "1482", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-13 07:13:29", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7899.136000", + "duration_ts": 7899136, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51", + "DURATION-eng": "02:11:18.784000000", + "NUMBER_OF_BYTES-eng": "50865", + "NUMBER_OF_FRAMES-eng": "1857", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-13 07:13:29", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Harry Potter And The Deathly Hallows Part 2 (2011)/0e36b6a68c1f48019cc05de8ba003ced.mkv": { + "format": { + "bit_rate": "19052206", + "duration": "7826.304000", + "filename": "Harry Potter And The Deathly Hallows Part 2 (2011)/0e36b6a68c1f48019cc05de8ba003ced.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 12, + "probe_score": 100, + "size": "18638545333", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-04T13:22:04.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Harry Potter and the Deathly Hallows: Part 2 (2011) - UHD BluRay - 1080p HDR x265 - BMF" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 150, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "17750954", + "DURATION-eng": "02:10:26.277000000", + "NUMBER_OF_BYTES-eng": "17365485884", + "NUMBER_OF_FRAMES-eng": "187643", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1280000", + "DURATION-eng": "02:10:26.304000000", + "NUMBER_OF_BYTES-eng": "1252208640", + "NUMBER_OF_FRAMES-eng": "244572", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30", + "DURATION-eng": "02:07:50.746000000", + "NUMBER_OF_BYTES-eng": "29402", + "NUMBER_OF_FRAMES-eng": "923", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33", + "DURATION-eng": "02:09:07.281000000", + "NUMBER_OF_BYTES-eng": "32446", + "NUMBER_OF_FRAMES-eng": "1029", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15513", + "DURATION-eng": "02:08:45.551000000", + "NUMBER_OF_BYTES-eng": "14981752", + "NUMBER_OF_FRAMES-eng": "2002", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15120", + "DURATION-eng": "02:08:45.551000000", + "NUMBER_OF_BYTES-eng": "14602129", + "NUMBER_OF_FRAMES-eng": "1882", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31", + "DURATION-eng": "01:55:44.563000000", + "NUMBER_OF_BYTES-eng": "27585", + "NUMBER_OF_FRAMES-eng": "737", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27", + "DURATION-eng": "02:08:43.800000000", + "NUMBER_OF_BYTES-eng": "27003", + "NUMBER_OF_FRAMES-eng": "967", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31", + "DURATION-eng": "01:55:27.838000000", + "NUMBER_OF_BYTES-eng": "26929", + "NUMBER_OF_FRAMES-eng": "838", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29", + "DURATION-eng": "02:08:45.550000000", + "NUMBER_OF_BYTES-eng": "28520", + "NUMBER_OF_FRAMES-eng": "928", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33", + "DURATION-eng": "01:55:27.838000000", + "NUMBER_OF_BYTES-eng": "28946", + "NUMBER_OF_FRAMES-eng": "794", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.304000", + "duration_ts": 7826304, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29", + "DURATION-eng": "02:08:45.551000000", + "NUMBER_OF_BYTES-eng": "28623", + "NUMBER_OF_FRAMES-eng": "923", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-04 13:22:04", + "language": "spa", + "title": "Latin American" + }, + "time_base": "1/1000" + } + ] + }, + "Solo A Star Wars Story (2018)/1edee4098bcf4cdbb4aa26c974087fbd.mkv": { + "format": { + "bit_rate": "8690977", + "duration": "8086.710000", + "filename": "Solo A Star Wars Story (2018)/1edee4098bcf4cdbb4aa26c974087fbd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8785177100", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-09-08T00:14:41.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0", + "title": "Solo.A.Star.Wars.Story.2018.BluRay.720p.x264.DTS-HDChina" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8086.710000", + "duration_ts": 8086710, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Stargate Continuum/tdm-stgc.mkv": { + "format": { + "bit_rate": "6596315", + "duration": "5672.720000", + "filename": "Stargate Continuum/tdm-stgc.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 13, + "probe_score": 100, + "size": "4677381547", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-07-21T13:08:04.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English AC3 5.1 @640Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger", + "title": "German" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hun", + "title": "Hungarian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum", + "title": "Romanian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "slo", + "title": "Slovak" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5672.720000", + "duration_ts": 5672720, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + } + ] + }, + "Kingsman The Golden Circle (2017)/Kingsman The Golden Circle 2017 720p BRRip HEVC x265 MkvCage.mkv": { + "format": { + "bit_rate": "897608", + "duration": "8462.282000", + "filename": "Kingsman The Golden Circle (2017)/Kingsman The Golden Circle 2017 720p BRRip HEVC x265 MkvCage.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "949476512", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-11-30T04:08:58.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "Kingsman.The.Golden.Circle.2017.720p.BRRip.HEVC.900MB.MkvCage" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "99999", + "BPS-eng": "99999", + "DURATION": "02:21:02.251000000", + "DURATION-eng": "02:21:02.251000000", + "NUMBER_OF_BYTES": "105778133", + "NUMBER_OF_BYTES-eng": "105778133", + "NUMBER_OF_FRAMES": "198334", + "NUMBER_OF_FRAMES-eng": "198334", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-11-30 04:08:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-11-30 04:08:58", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 536, + "index": 1, + "level": 93, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "795655", + "BPS-eng": "795655", + "DURATION": "02:21:02.246000000", + "DURATION-eng": "02:21:02.246000000", + "NUMBER_OF_BYTES": "841629383", + "NUMBER_OF_BYTES-eng": "841629383", + "NUMBER_OF_FRAMES": "202891", + "NUMBER_OF_FRAMES-eng": "202891", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-11-30 04:08:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-11-30 04:08:58" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8462.282000", + "duration_ts": 8462282, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:00:00.013000000", + "DURATION-eng": "01:00:00.013000000", + "NUMBER_OF_BYTES": "125", + "NUMBER_OF_BYTES-eng": "125", + "NUMBER_OF_FRAMES": "6", + "NUMBER_OF_FRAMES-eng": "6", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-11-30 04:08:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-11-30 04:08:58", + "language": "eng", + "title": "Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8462.282000", + "duration_ts": 8462282, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "02:13:03.756000000", + "DURATION-eng": "02:13:03.756000000", + "NUMBER_OF_BYTES": "55461", + "NUMBER_OF_BYTES-eng": "55461", + "NUMBER_OF_FRAMES": "1883", + "NUMBER_OF_FRAMES-eng": "1883", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-11-30 04:08:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-11-30 04:08:58", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Shallows (2016)/829bb6434f58410b8f69a195daf60934.mkv": { + "format": { + "bit_rate": "13172174", + "duration": "5176.170000", + "filename": "The Shallows (2016)/829bb6434f58410b8f69a195daf60934.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8522676977", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 802, + "coded_width": 1920, + "display_aspect_ratio": "960:401", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 802, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:26:16.170000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:26:16.169000000" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5176.170000", + "duration_ts": 5176170, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:20:07.219000000", + "ENCODER": "Lavc57.64.100 ssa" + }, + "time_base": "1/1000" + } + ] + }, + "Spartacus (1960)/Spartacus (1960)) BRRip 720p[Dual Audio][Eng Hindi]Current_HD.mkv": { + "format": { + "bit_rate": "1105494", + "duration": "11804.629000", + "filename": "Spartacus (1960)/Spartacus (1960)) BRRip 720p[Dual Audio][Eng Hindi]Current_HD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1631243780", + "start_time": "0.000000", + "tags": { + "creation_time": "2002-01-02T03:57:14.000000Z", + "encoder": "libebml v1.2.0 + libmatroska v1.1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 576, + "coded_width": 1280, + "display_aspect_ratio": "20:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 576, + "index": 0, + "is_avc": "true", + "level": 32, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "CurrentHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "CurrentHD" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hin", + "title": "CurrentHD" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11804.629000", + "duration_ts": 11804629, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "CurrentHD" + }, + "time_base": "1/1000" + } + ] + }, + "The Age of Stupid (2009)/stupid.xvid-lpd.avi": { + "format": { + "bit_rate": "1102542", + "duration": "5324.840000", + "filename": "The Age of Stupid (2009)/stupid.xvid-lpd.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733857792", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "961444", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 624, + "display_aspect_ratio": "39:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5324.840000", + "duration_ts": 133121, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "133121", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128192", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5324.616000", + "duration_ts": 221859, + "index": 1, + "nb_frames": "221859", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Billy Elliot (2000)/Billy Elliot - Divx.avi": { + "format": { + "bit_rate": "888105", + "duration": "6349.320000", + "filename": "Billy Elliot (2000)/Billy Elliot - Divx.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "704858112", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "683559", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 512, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6349.320000", + "duration_ts": 158733, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "158733", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6349.296327", + "duration_ts": 243059, + "index": 1, + "nb_frames": "243059", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "Jack Reacher Never Go Back (2016)/Jack.Reacher.Never.Go.Back.2016.1080p.WEB-DL.DD5.1.H264-FGT.mkv": { + "format": { + "bit_rate": "4963843", + "duration": "7109.444000", + "filename": "Jack Reacher Never Go Back (2016)/Jack.Reacher.Never.Go.Back.2016.1080p.WEB-DL.DD5.1.H264-FGT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "4411270506", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-17T05:54:59.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "Jack.Reacher.Never.Go.Back.2016.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:200", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Jack.Reacher.Never.Go.Back.2016.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Jack.Reacher.Never.Go.Back.2016.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7109.444000", + "duration_ts": 7109444, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7109.444000", + "duration_ts": 639849960, + "has_b_frames": 0, + "height": 176, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7109.444000", + "duration_ts": 639849960, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7109.444000", + "duration_ts": 639849960, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7109.444000", + "duration_ts": 639849960, + "has_b_frames": 0, + "height": 600, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Buckaroo Banzai Declassified (2002)/Buckaroo_Banzai_Declassified.avi": { + "format": { + "bit_rate": "2141738", + "duration": "1370.036703", + "filename": "Buckaroo Banzai Declassified (2002)/Buckaroo_Banzai_Declassified.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "366782464", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "1940917", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 496, + "coded_width": 864, + "display_aspect_ratio": "54:31", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "1370.036703", + "duration_ts": 41060, + "has_b_frames": 0, + "height": 496, + "index": 0, + "level": 0, + "nb_frames": "41060", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 864 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "32880881", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Last Train Home (2009)/xtm-lth.avi": { + "format": { + "bit_rate": "1084961", + "duration": "5413.282875", + "filename": "Last Train Home (2009)/xtm-lth.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734150656", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "942233", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 624, + "display_aspect_ratio": "39:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5413.282875", + "duration_ts": 129789, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "129789", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129984", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5413.272000", + "duration_ts": 225553, + "index": 1, + "nb_frames": "225553", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Gremlins (1984)/Gremlins.1984.1080p.BRrip.x264.YIFY.mp4": { + "format": { + "bit_rate": "2151601", + "duration": "6375.786667", + "filename": "Gremlins (1984)/Gremlins.1984.1080p.BRrip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1714768887", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-09-18T06:04:20.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2051475", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6375.702667", + "duration_ts": 612067456, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "152864", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-09-18T06:04:20.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96009", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6375.786667", + "duration_ts": 306037760, + "index": 1, + "max_bit_rate": "118840", + "nb_frames": "298865", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-09-18T06:05:31.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Life Of Pi (2012)/c6b2743448474b37a240449867c3c0d5.mkv": { + "format": { + "bit_rate": "13635882", + "duration": "7619.638000", + "filename": "Life Of Pi (2012)/c6b2743448474b37a240449867c3c0d5.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "12987560612", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-14T07:38:46.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "level": 150, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6906861", + "DURATION-eng": "02:06:59.620000000", + "NUMBER_OF_BYTES-eng": "6578457054", + "NUMBER_OF_FRAMES-eng": "182688", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4702009", + "DURATION-eng": "02:06:59.616000000", + "NUMBER_OF_BYTES-eng": "4478438656", + "NUMBER_OF_FRAMES-eng": "714339", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1942998", + "DURATION-eng": "02:06:59.638000000", + "NUMBER_OF_BYTES-eng": "1850617944", + "NUMBER_OF_FRAMES-eng": "714340", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7619.638000", + "duration_ts": 7619638, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38268", + "DURATION-eng": "02:06:38.365000000", + "NUMBER_OF_BYTES-eng": "36347571", + "NUMBER_OF_FRAMES-eng": "3532", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7619.638000", + "duration_ts": 7619638, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39925", + "DURATION-eng": "02:06:38.365000000", + "NUMBER_OF_BYTES-eng": "37921346", + "NUMBER_OF_FRAMES-eng": "3752", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7619.638000", + "duration_ts": 7619638, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "57942", + "DURATION-eng": "02:06:38.365000000", + "NUMBER_OF_BYTES-eng": "55033085", + "NUMBER_OF_FRAMES-eng": "3532", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7619.638000", + "duration_ts": 7619638, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27400", + "DURATION-eng": "01:58:11.751000000", + "NUMBER_OF_BYTES-eng": "24289745", + "NUMBER_OF_FRAMES-eng": "2284", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-14 07:38:46", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Rebel Music/PBS.American.Masters.Rebel.Music.The.Bob.Marley.Story.XviD.mp3.avi": { + "format": { + "bit_rate": "1155358", + "duration": "5078.144811", + "filename": "Rebel Music/PBS.American.Masters.Rebel.Music.The.Bob.Marley.Story.XviD.mp3.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733384704", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.1.1a (build 1639/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "1018813", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5078.144811", + "duration_ts": 152192, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "152192", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "122720", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5078.064000", + "duration_ts": 211586, + "index": 1, + "nb_frames": "211586", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Charlie and the Chocolate Factory/Charlie and the Chocolate Factory.avi": { + "format": { + "bit_rate": "1108010", + "duration": "6892.896000", + "filename": "Charlie and the Chocolate Factory/Charlie and the Chocolate Factory.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "954675200", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "979266", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6892.892893", + "duration_ts": 165264, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "165264", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116040", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6892.896000", + "duration_ts": 287204, + "index": 1, + "nb_frames": "287204", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Lord Of The Rings 2 - The Two Towers (2002)/The Lord of The Rings 2 - The Two Towers (2002) Special Extended 1080p BluRay DTS-HD MA 6.1.mkv": { + "format": { + "bit_rate": "34377930", + "duration": "14127.872000", + "filename": "The Lord Of The Rings 2 - The Two Towers (2002)/The Lord of The Rings 2 - The Two Towers (2002) Special Extended 1080p BluRay DTS-HD MA 6.1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "60710874874", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-11T10:14:01.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29888842", + "BPS-eng": "29888842", + "DURATION": "03:55:26.946000000", + "DURATION-eng": "03:55:26.946000000", + "NUMBER_OF_BYTES": "52779758444", + "NUMBER_OF_BYTES-eng": "52779758444", + "NUMBER_OF_FRAMES": "338708", + "NUMBER_OF_FRAMES-eng": "338708", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 10:14:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 10:14:01" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4478723", + "BPS-eng": "4478723", + "DURATION": "03:55:27.872000000", + "DURATION-eng": "03:55:27.872000000", + "NUMBER_OF_BYTES": "7909354188", + "NUMBER_OF_BYTES-eng": "7909354188", + "NUMBER_OF_FRAMES": "1324488", + "NUMBER_OF_FRAMES-eng": "1324488", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 10:14:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 10:14:01", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "14127.872000", + "duration_ts": 14127872, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "24573", + "BPS-eng": "24573", + "DURATION": "03:33:07.065000000", + "DURATION-eng": "03:33:07.065000000", + "NUMBER_OF_BYTES": "39277632", + "NUMBER_OF_BYTES-eng": "39277632", + "NUMBER_OF_FRAMES": "3386", + "NUMBER_OF_FRAMES-eng": "3386", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 10:14:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 10:14:01", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "14127.872000", + "duration_ts": 14127872, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "37", + "BPS-eng": "37", + "DURATION": "03:33:20.585000000", + "DURATION-eng": "03:33:20.585000000", + "NUMBER_OF_BYTES": "59724", + "NUMBER_OF_BYTES-eng": "59724", + "NUMBER_OF_FRAMES": "1715", + "NUMBER_OF_FRAMES-eng": "1715", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 10:14:01", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 10:14:01" + }, + "time_base": "1/1000" + } + ] + }, + "From Bedrooms To Billions The Amiga Years (2016)/From.Bedrooms.To.Billions.The.Amiga.Years.2016.720p.WEBRip.DD2.0.x264-BDP[PRiME].mkv": { + "format": { + "bit_rate": "2846326", + "duration": "9100.672000", + "filename": "From Bedrooms To Billions The Amiga Years (2016)/From.Bedrooms.To.Billions.The.Amiga.Years.2016.720p.WEBRip.DD2.0.x264-BDP[PRiME].mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3237935090", + "start_time": "0.000000", + "tags": { + "COMPATIBLE_BRANDS": "mp42mp41isomavc1", + "COMPOSER": "Encoder *BDP*", + "ENCODER": "Lavf57.46.100", + "MAJOR_BRAND": "mp42", + "MINOR_VERSION": "0", + "creation_time": "2017-02-05T22:43:39.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 680, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 680, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "17:18", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:31:40.645000000", + "ENCODER": "Lavc57.51.100 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:31:40.672000000", + "ENCODER": "Lavc57.51.100 ac3_fixed" + }, + "time_base": "1/1000" + } + ] + }, + "RBG (2018)/RBG.2018.DOCU.1080p.WEB-DL.DD5.1.H264-FGT.mkv": { + "format": { + "bit_rate": "5510860", + "duration": "5893.894000", + "filename": "RBG (2018)/RBG.2018.DOCU.1080p.WEB-DL.DD5.1.H264-FGT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "4060053436", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-13T10:27:05.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "RBG.2018.DOCU.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "5124804", + "DURATION-eng": "01:38:13.852000000", + "NUMBER_OF_BYTES-eng": "3775604693", + "NUMBER_OF_FRAMES-eng": "141311", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-13 10:27:05", + "language": "eng", + "title": "RBG.2018.DOCU.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:38:13.888000000", + "NUMBER_OF_BYTES-eng": "282906624", + "NUMBER_OF_FRAMES-eng": "184184", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-13 10:27:05", + "language": "eng", + "title": "RBG.2018.DOCU.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5893.894000", + "duration_ts": 5893894, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "98", + "DURATION-eng": "01:33:49.990000000", + "NUMBER_OF_BYTES-eng": "69593", + "NUMBER_OF_FRAMES-eng": "1480", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-13 10:27:05", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5893.894000", + "duration_ts": 530450460, + "has_b_frames": 0, + "height": 176, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5893.894000", + "duration_ts": 530450460, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5893.894000", + "duration_ts": 530450460, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5893.894000", + "duration_ts": 530450460, + "has_b_frames": 0, + "height": 600, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Attack On Titan: Part 2 (2015)/Attack.on.Titan.Part.2.2015.BluRay.720p.Ganool.mkv": { + "format": { + "bit_rate": "1121839", + "duration": "5239.284000", + "filename": "Attack On Titan: Part 2 (2015)/Attack.on.Titan.Part.2.2015.BluRay.720p.Ganool.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734704559", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-17T12:48:38.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1055997", + "BPS-eng": "1055997", + "DURATION": "01:27:19.276000000", + "DURATION-eng": "01:27:19.276000000", + "NUMBER_OF_BYTES": "691583004", + "NUMBER_OF_BYTES-eng": "691583004", + "NUMBER_OF_FRAMES": "125617", + "NUMBER_OF_FRAMES-eng": "125617", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-17 12:48:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-17 12:48:38" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "64034", + "BPS-eng": "64034", + "DURATION": "01:27:19.253000000", + "DURATION-eng": "01:27:19.253000000", + "NUMBER_OF_BYTES": "41936407", + "NUMBER_OF_BYTES-eng": "41936407", + "NUMBER_OF_FRAMES": "122795", + "NUMBER_OF_FRAMES-eng": "122795", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-17 12:48:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-17 12:48:38" + }, + "time_base": "1/1000" + } + ] + }, + "Ghost In The Shell Arise Border 3 Ghost Tears (2014)/Ghost.in.the.Shell.Arise.Border.3.Ghost.Tears.2014.1080p.BRRip.x264.AC3-JYK.mkv": { + "format": { + "bit_rate": "4392432", + "duration": "3505.536000", + "filename": "Ghost In The Shell Arise Border 3 Ghost Tears (2014)/Ghost.in.the.Shell.Arise.Border.3.Ghost.Tears.2014.1080p.BRRip.x264.AC3-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1924728898", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-07-14T13:55:40.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3750669", + "BPS-eng": "3750669", + "DURATION": "00:58:25.502000000", + "DURATION-eng": "00:58:25.502000000", + "NUMBER_OF_BYTES": "1643497343", + "NUMBER_OF_BYTES-eng": "1643497343", + "NUMBER_OF_FRAMES": "84048", + "NUMBER_OF_FRAMES-eng": "84048", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-07-14 13:55:40", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-07-14 13:55:40", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "00:58:25.536000000", + "DURATION-eng": "00:58:25.536000000", + "NUMBER_OF_BYTES": "280442880", + "NUMBER_OF_BYTES-eng": "280442880", + "NUMBER_OF_FRAMES": "109548", + "NUMBER_OF_FRAMES-eng": "109548", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.0.0 ('Where We Going') 32bit built on Jun 9 2014 15:08:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-07-14 13:55:40", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-07-14 13:55:40", + "language": "jpn" + }, + "time_base": "1/1000" + } + ] + }, + "Office Space/Office Space.m4v": { + "format": { + "bit_rate": "1158321", + "duration": "5355.520000", + "filename": "Office Space/Office Space.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "775426865", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T06:51:08.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "154044000/6426619", + "bit_rate": "796182", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "6426619/308088000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5355.515833", + "duration_ts": 481996425, + "has_b_frames": 1, + "height": 336, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "128370", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "13:15", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T06:51:08.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164960", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5355.520000", + "duration_ts": 257064960, + "index": 1, + "max_bit_rate": "271168", + "nb_frames": "251040", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T06:51:08.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "5355.520000", + "duration_ts": 257064960, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "167360", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T06:51:08.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Mortal Engines (2018)/1.5 DD p0801 )8102( senignE latroM.mkv": { + "format": { + "bit_rate": "4885818", + "duration": "7701.248000", + "filename": "Mortal Engines (2018)/1.5 DD p0801 )8102( senignE latroM.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4703362107", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-03T11:05:51.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2", + "title": "Mortal Engines (2018) 1080p DD 5.1 M2E Releases" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "02:08:21.248000000", + "DURATION-eng": "02:08:21.248000000", + "NUMBER_OF_BYTES": "369659904", + "NUMBER_OF_BYTES-eng": "369659904", + "NUMBER_OF_FRAMES": "240664", + "NUMBER_OF_FRAMES-eng": "240664", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.0.0 ('Til The Day That I Die') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.0.0 ('Til The Day That I Die') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-03 11:05:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-03 11:05:51", + "language": "eng", + "title": "DD 5.1 M2E" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4499875", + "BPS-eng": "4499875", + "DURATION": "02:08:21.201000000", + "DURATION-eng": "02:08:21.201000000", + "NUMBER_OF_BYTES": "4331805988", + "NUMBER_OF_BYTES-eng": "4331805988", + "NUMBER_OF_FRAMES": "184644", + "NUMBER_OF_FRAMES-eng": "184644", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.0.0 ('Til The Day That I Die') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.0.0 ('Til The Day That I Die') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-03 11:05:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-03 11:05:51", + "language": "eng", + "title": "Mortal Engines (2018) 1080p DD 5.1 M2E Releases" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7701.248000", + "duration_ts": 7701248, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "41", + "BPS-eng": "41", + "DURATION": "01:58:42.000000000", + "DURATION-eng": "01:58:42.000000000", + "NUMBER_OF_BYTES": "36901", + "NUMBER_OF_BYTES-eng": "36901", + "NUMBER_OF_FRAMES": "1289", + "NUMBER_OF_FRAMES-eng": "1289", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.0.0 ('Til The Day That I Die') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.0.0 ('Til The Day That I Die') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-03 11:05:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-03 11:05:51", + "language": "dut", + "title": "Custom M2E Releases" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "PNG (Portable Network Graphics) image", + "codec_name": "png", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 14, + "coded_width": 119, + "color_range": "pc", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7701.248000", + "duration_ts": 693112320, + "has_b_frames": 0, + "height": 14, + "index": 3, + "level": -99, + "pix_fmt": "rgba", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "M2E Releases.png", + "mimetype": "image/png" + }, + "time_base": "1/90000", + "width": 119 + } + ] + }, + "A Quiet Place (2018)/A.Quiet.Place.2018.1080p.BluRay.x264.TrueHD.7.1.Atmos.mkv": { + "format": { + "bit_rate": "14355500", + "duration": "5414.912000", + "filename": "A Quiet Place (2018)/A.Quiet.Place.2018.1080p.BluRay.x264.TrueHD.7.1.Atmos.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 11, + "probe_score": 100, + "size": "9716721321", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-28T10:03:23.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "A.Quiet.Place.2018.1080p.BluRay.x264.TrueHD.7.1.Atmos-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9754613", + "DURATION-eng": "01:30:14.910000000", + "NUMBER_OF_BYTES-eng": "6602544295", + "NUMBER_OF_FRAMES-eng": "129828", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "title": "A.Quiet.Place.2018.1080p.BluRay.x264.TrueHD.7.1.Atmos-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "TrueHD", + "codec_name": "truehd", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s32", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3889614", + "DURATION-eng": "01:30:14.910000000", + "NUMBER_OF_BYTES-eng": "2632739096", + "NUMBER_OF_FRAMES-eng": "6497892", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "language": "eng", + "title": "A.Quiet.Place.2018.1080p.BluRay.x264.TrueHD.7.1.Atmos-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:30:14.912000000", + "NUMBER_OF_BYTES-eng": "433192960", + "NUMBER_OF_FRAMES-eng": "169216", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "language": "eng", + "title": "A.Quiet.Place.2018.1080p.BluRay.x264.TrueHD.7.1.Atmos-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 5414912, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3", + "DURATION-eng": "01:11:46.310000000", + "NUMBER_OF_BYTES-eng": "1912", + "NUMBER_OF_FRAMES-eng": "114", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "language": "eng", + "title": "FORCED" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 5414912, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5", + "DURATION-eng": "01:11:46.310000000", + "NUMBER_OF_BYTES-eng": "2984", + "NUMBER_OF_FRAMES-eng": "168", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "language": "eng", + "title": "English-SRT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 5414912, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2139", + "DURATION-eng": "01:11:46.302000000", + "NUMBER_OF_BYTES-eng": "1151795", + "NUMBER_OF_FRAMES-eng": "302", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "language": "eng", + "title": "English-PGS" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 5414912, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4370", + "DURATION-eng": "01:22:05.337000000", + "NUMBER_OF_BYTES-eng": "2690544", + "NUMBER_OF_FRAMES-eng": "652", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-28 10:03:23", + "language": "eng", + "title": "English-SDH-PGS" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 487342080, + "has_b_frames": 0, + "height": 176, + "index": 7, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 487342080, + "has_b_frames": 0, + "height": 120, + "index": 8, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 487342080, + "has_b_frames": 0, + "height": 882, + "index": 9, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5414.912000", + "duration_ts": 487342080, + "has_b_frames": 0, + "height": 600, + "index": 10, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Meet the Parents (2000)/Meet the Parents.avi": { + "format": { + "bit_rate": "1561579", + "duration": "6273.068485", + "filename": "Meet the Parents (2000)/Meet the Parents.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1224486912", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "1424271", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "104271/2500000", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6273.068485", + "duration_ts": 150403, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "150403", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "128:129", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "104271/2500000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "261378", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Synecdoche New York (2008)/Synecdoche.New.York.LIMITED.DVDRip.XviD-iMBT-cd1.avi": { + "format": { + "bit_rate": "1565191", + "duration": "3749.874875", + "filename": "Synecdoche New York (2008)/Synecdoche.New.York.LIMITED.DVDRip.XviD-iMBT-cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733659136", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1107814", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3749.874875", + "duration_ts": 89907, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": 3, + "nb_frames": "89907", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "209991104", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Zach Galifianakis Live At The Purple Onion 2006 REPACK/2cbb8504867f47ba823bc6bbb16645d4.mkv": { + "format": { + "bit_rate": "7726310", + "duration": "3663.008000", + "filename": "Zach Galifianakis Live At The Purple Onion 2006 REPACK/2cbb8504867f47ba823bc6bbb16645d4.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3537692061", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-28T18:01:35.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7084332", + "DURATION-eng": "01:01:02.955000000", + "NUMBER_OF_BYTES-eng": "3243698837", + "NUMBER_OF_FRAMES-eng": "87823", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-28 18:01:35", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:01:03.008000000", + "NUMBER_OF_BYTES-eng": "293040640", + "NUMBER_OF_FRAMES-eng": "114469", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-28 18:01:35", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3663.008000", + "duration_ts": 3663008, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "75", + "DURATION-eng": "01:00:40.000000000", + "NUMBER_OF_BYTES-eng": "34349", + "NUMBER_OF_FRAMES-eng": "1170", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-28 18:01:35", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Wet Hot American Summer/ewdp-whas.xvid.avi": { + "format": { + "bit_rate": "1014087", + "duration": "5788.368000", + "filename": "Wet Hot American Summer/ewdp-whas.xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733739008", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "895578", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 320, + "coded_width": 592, + "display_aspect_ratio": "37:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5788.365917", + "duration_ts": 138782, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "138782", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "105760", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5788.368000", + "duration_ts": 241182, + "index": 1, + "nb_frames": "241182", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Star Trek 3 - The Search For Spock/Star Trek 03 Search For Spock 1984 1280x544.mp4": { + "format": { + "bit_rate": "2221367", + "duration": "6314.090667", + "filename": "Star Trek 3 - The Search For Spock/Star Trek 03 Search For Spock 1984 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1753239087", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-15T04:10:49.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2091383763/87228131", + "bit_rate": "1961466", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "41120029/1971789605", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6314.016033", + "duration_ts": 568261443, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "151385", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-15T04:10:49.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255403", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6314.090667", + "duration_ts": 303076352, + "index": 1, + "max_bit_rate": "345440", + "nb_frames": "295973", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-15T04:10:49.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "This Is Spinal Tap (1984)/This Is Spinal Tap (1984).avi": { + "format": { + "bit_rate": "1182663", + "duration": "4966.962000", + "filename": "This Is Spinal Tap (1984)/This Is Spinal Tap (1984).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734280492", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1045239", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4966.962000", + "duration_ts": 119088, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "119088", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Video " + }, + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "79471391", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio " + }, + "time_base": "1/16000" + } + ] + }, + "The Last Witch Hunter (2015)/The.Last.Witch.Hunter.2015.1080p.BluRay.H264.AAC-RARBG.mp4": { + "format": { + "bit_rate": "2730986", + "duration": "6394.486000", + "filename": "The Last Witch Hunter (2015)/The.Last.Witch.Hunter.2015.1080p.BluRay.H264.AAC-RARBG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2182906646", + "start_time": "0.000000", + "tags": { + "comment": "The.Last.Witch.Hunter.2015.1080p.BluRay.H264.AAC-RARBG", + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-01-21T02:26:02.000000Z", + "encoder": "Lavf56.40.101", + "major_brand": "isom", + "minor_version": "512", + "title": "The.Last.Witch.Hunter.2015.1080p.BluRay.H264.AAC-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2500073", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6394.353020", + "duration_ts": 76655504, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "153311", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-01-21T02:26:02.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/11988", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "223998", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6394.486000", + "duration_ts": 306935328, + "index": 1, + "max_bit_rate": "224000", + "nb_frames": "299740", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-01-21T02:26:02.000000Z", + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Harry And The Hendersons (1980)/d6bbf8efee9a4c9288ab44faee116a70.mkv": { + "format": { + "bit_rate": "9877120", + "duration": "6652.651000", + "filename": "Harry And The Hendersons (1980)/d6bbf8efee9a4c9288ab44faee116a70.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8213629359", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-02-20T23:54:32.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "X264" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS" + }, + "time_base": "1/1000" + } + ] + }, + "Seven Ages Of Starlight (2012)/Seven.Ages.of.Starlight.720p.WEB.h264-spamTV.mkv": { + "format": { + "bit_rate": "2338000", + "duration": "5322.000000", + "filename": "Seven Ages Of Starlight (2012)/Seven.Ages.of.Starlight.720p.WEB.h264-spamTV.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1555354749", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-17T16:46:50.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "2242275", + "BPS-eng": "2242275", + "DURATION": "01:28:41.960000000", + "DURATION-eng": "01:28:41.960000000", + "NUMBER_OF_BYTES": "1491662499", + "NUMBER_OF_BYTES-eng": "1491662499", + "NUMBER_OF_FRAMES": "133050", + "NUMBER_OF_FRAMES-eng": "133050", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-17 16:46:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-17 16:46:50" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "93468", + "BPS-eng": "93468", + "DURATION": "01:28:41.984000000", + "DURATION-eng": "01:28:41.984000000", + "NUMBER_OF_BYTES": "62179795", + "NUMBER_OF_BYTES-eng": "62179795", + "NUMBER_OF_FRAMES": "249468", + "NUMBER_OF_FRAMES-eng": "249468", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-17 16:46:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-17 16:46:50" + }, + "time_base": "1/1000" + } + ] + }, + "Spider-Man 2 (2004)/Spiderman 2.avi": { + "format": { + "bit_rate": "987756", + "duration": "7645.979313", + "filename": "Spider-Man 2 (2004)/Spiderman 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "944046080", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "859554", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7645.979313", + "duration_ts": 183320, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "183320", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115496", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7645.968000", + "duration_ts": 318582, + "index": 1, + "nb_frames": "318582", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Conquest of the Planet of the Apes (1972)/Conquest.of.the.Planet.of.the.Apes.1972.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1821085", + "duration": "5201.863333", + "filename": "Conquest of the Planet of the Apes (1972)/Conquest.of.the.Planet.of.the.Apes.1972.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1184129997", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-01T12:08:01.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1726594", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5201.863333", + "duration_ts": 124844720, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "124720", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-03-01T12:08:01.000000Z", + "handler_name": "of.the.Planet.of.the.Apes.1972.1080p.BrRip.x264.BOKUTOX.YIFY.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5110.592000", + "duration_ts": 245308416, + "index": 1, + "max_bit_rate": "95896", + "nb_frames": "239559", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-01T04:47:36.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Indiana Jones And The Last Crusade (1989)/7457e61214d54ec882d109123e35790d.mkv": { + "format": { + "bit_rate": "11103750", + "duration": "7613.314000", + "filename": "Indiana Jones And The Last Crusade (1989)/7457e61214d54ec882d109123e35790d.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "10567042063", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7613.314000", + "duration_ts": 7613314, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Unbreakable (2000)/4a7d3328772340e7a3da9fd6d1c1ef33.mkv": { + "format": { + "bit_rate": "6208971", + "duration": "6399.435000", + "filename": "Unbreakable (2000)/4a7d3328772340e7a3da9fd6d1c1ef33.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4966738563", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-07T16:29:01Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5759074", + "DURATION-eng": "01:46:39.435000000", + "NUMBER_OF_BYTES-eng": "4606852587", + "NUMBER_OF_FRAMES-eng": "153433", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-17 04:16:36" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:46:39.424000000", + "NUMBER_OF_BYTES-eng": "358367744", + "NUMBER_OF_FRAMES-eng": "199982", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-17 04:16:36", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6399.435000", + "duration_ts": 6399435, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "01:40:56.557000000", + "NUMBER_OF_BYTES-eng": "32368", + "NUMBER_OF_FRAMES-eng": "898", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-17 04:16:36", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Mummy/The Mummy.m4v": { + "format": { + "bit_rate": "1705013", + "duration": "7491.968000", + "filename": "The Mummy/The Mummy.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1596738753", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T18:42:36.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1347165000/56189411", + "bit_rate": "1117377", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "39603357/1899014618", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "209:92", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7491.921467", + "duration_ts": 674272932, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "179622", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "209:180", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T18:42:36.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "134386", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7491.968000", + "duration_ts": 359614464, + "index": 1, + "max_bit_rate": "220816", + "nb_frames": "351186", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T18:42:36.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7491.968000", + "duration_ts": 359614464, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "234124", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T18:42:36.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "R I P D (2013)/R.I.P.D.2013.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "1240065", + "duration": "5340.010000", + "filename": "R I P D (2013)/R.I.P.D.2013.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "827745054", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2013-08-28T16:16:17.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64426", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5340.010667", + "duration_ts": 256320512, + "index": 0, + "max_bit_rate": "92392", + "nb_frames": "250313", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-08-28T16:14:57.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1171722", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5340.001333", + "duration_ts": 128160032, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "128032", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-08-28T16:15:00.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Team Darryl (2018)/1032579e45d14272bd88aed5d7ac2ee2.mkv": { + "format": { + "bit_rate": "10626997", + "duration": "368.864000", + "filename": "Team Darryl (2018)/1032579e45d14272bd88aed5d7ac2ee2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "489989581", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-15T19:19:44.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9985524", + "DURATION-eng": "00:06:08.827000000", + "NUMBER_OF_BYTES-eng": "460366395", + "NUMBER_OF_FRAMES-eng": "8843", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-15 19:19:44", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "00:06:08.864000000", + "NUMBER_OF_BYTES-eng": "29509120", + "NUMBER_OF_FRAMES-eng": "11527", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-15 19:19:44", + "language": "eng", + "title": "English AC3 640 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "368.864000", + "duration_ts": 368864, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "103", + "DURATION-eng": "00:05:51.600000000", + "NUMBER_OF_BYTES-eng": "4527", + "NUMBER_OF_FRAMES-eng": "119", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-15 19:19:44", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "368.864000", + "duration_ts": 368864, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "90", + "DURATION-eng": "00:05:51.600000000", + "NUMBER_OF_BYTES-eng": "3960", + "NUMBER_OF_FRAMES-eng": "113", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-15 19:19:44", + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + } + ] + }, + "The Terminator (1984)/The.Terminator[1984]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "954463", + "duration": "6165.600000", + "filename": "The Terminator (1984)/The.Terminator[1984]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735604736", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "832757", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 334, + "coded_width": 632, + "display_aspect_ratio": "316:167", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6165.600000", + "duration_ts": 154140, + "has_b_frames": 1, + "height": 334, + "index": 0, + "level": 5, + "nb_frames": "154140", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 632 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "256900", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Friday After Next (2002)/Friday After Next[2002]DvDrip[Eng]-BugZ.avi": { + "format": { + "bit_rate": "1211025", + "duration": "4849.400000", + "filename": "Friday After Next (2002)/Friday After Next[2002]DvDrip[Eng]-BugZ.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734093312", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1085207", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 320, + "coded_width": 576, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4849.400000", + "duration_ts": 121235, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "121235", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112944", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4848.048000", + "duration_ts": 202002, + "index": 1, + "nb_frames": "202002", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Alice In Wonderland (1951)/919be3dd932341e7b3ba111989a3b8f8.mkv": { + "format": { + "bit_rate": "8317151", + "duration": "4516.182000", + "filename": "Alice In Wonderland (1951)/919be3dd932341e7b3ba111989a3b8f8.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4695221514", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-01-30T08:12:08.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1424, + "display_aspect_ratio": "178:135", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1424 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4516.182000", + "duration_ts": 4516182, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Jurassic Park (1993)/2b37360e047d4a81addb79ab20cb5ab2.mkv": { + "format": { + "bit_rate": "9870175", + "duration": "7602.560000", + "filename": "Jurassic Park (1993)/2b37360e047d4a81addb79ab20cb5ab2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "9379825343", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-29T11:41:35.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Orgazmo (1997)/Orgazmo.1997.Unrated.DVDRip.iNTERNAL.XviD-JiZZA(CANUS RELEASE).avi": { + "format": { + "bit_rate": "1031730", + "duration": "5694.944945", + "filename": "Orgazmo (1997)/Orgazmo.1997.Unrated.DVDRip.iNTERNAL.XviD-JiZZA(CANUS RELEASE).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734455808", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "857098", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 592, + "display_aspect_ratio": "37:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5694.944945", + "duration_ts": 136542, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "136542", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "161888", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5694.888000", + "duration_ts": 237287, + "index": 1, + "nb_frames": "237287", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Lego Movie 2 The Second Part (2019)/1ab69d9186f4403e8a0e489304543b6c.mkv": { + "format": { + "bit_rate": "15498523", + "duration": "6429.472000", + "filename": "The Lego Movie 2 The Second Part (2019)/1ab69d9186f4403e8a0e489304543b6c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "12455915578", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-02T13:20:28.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14159460", + "DURATION-eng": "01:47:09.465000000", + "NUMBER_OF_BYTES-eng": "11379719836", + "NUMBER_OF_FRAMES-eng": "154153", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:47:09.472000000", + "NUMBER_OF_BYTES-eng": "514357760", + "NUMBER_OF_FRAMES-eng": "200921", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:47:09.472000000", + "NUMBER_OF_BYTES-eng": "514357760", + "NUMBER_OF_FRAMES-eng": "200921", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6429.472000", + "duration_ts": 6429472, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59332", + "DURATION-eng": "01:38:03.961000000", + "NUMBER_OF_BYTES-eng": "43638563", + "NUMBER_OF_FRAMES-eng": "4287", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6429.472000", + "duration_ts": 6429472, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45987", + "DURATION-eng": "01:46:28.215000000", + "NUMBER_OF_BYTES-eng": "36722406", + "NUMBER_OF_FRAMES-eng": "3854", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6429.472000", + "duration_ts": 6429472, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45228", + "DURATION-eng": "01:46:33.637000000", + "NUMBER_OF_BYTES-eng": "36146787", + "NUMBER_OF_FRAMES-eng": "3880", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6429.472000", + "duration_ts": 6429472, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36880", + "DURATION-eng": "01:46:33.470000000", + "NUMBER_OF_BYTES-eng": "29474434", + "NUMBER_OF_FRAMES-eng": "3418", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6429.472000", + "duration_ts": 6429472, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "598", + "DURATION-eng": "01:24:18.303000000", + "NUMBER_OF_BYTES-eng": "378669", + "NUMBER_OF_FRAMES-eng": "42", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-02 13:20:28", + "language": "fre" + }, + "time_base": "1/1000" + } + ] + }, + "Star Wars Episode V The Empire Strikes Back (1980)/f4bbc76e353546fea0873a2ac32d8818.mkv": { + "format": { + "bit_rate": "11710360", + "duration": "7641.593000", + "filename": "Star Wars Episode V The Empire Strikes Back (1980)/f4bbc76e353546fea0873a2ac32d8818.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 15, + "probe_score": 100, + "size": "11185726069", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-03-17T17:36:43.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "9973341", + "BPS-eng": "9973341", + "DURATION": "02:07:21.510000000", + "DURATION-eng": "02:07:21.510000000", + "NUMBER_OF_BYTES": "9526424051", + "NUMBER_OF_BYTES-eng": "9526424051", + "NUMBER_OF_FRAMES": "183213", + "NUMBER_OF_FRAMES-eng": "183213", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "02:07:21.558000000", + "DURATION-eng": "02:07:21.558000000", + "NUMBER_OF_BYTES": "1441388752", + "NUMBER_OF_BYTES-eng": "1441388752", + "NUMBER_OF_FRAMES": "716396", + "NUMBER_OF_FRAMES-eng": "716396", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16254", + "BPS-eng": "16254", + "DURATION": "02:03:46.544000000", + "DURATION-eng": "02:03:46.544000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "15089734", + "NUMBER_OF_BYTES-eng": "15089734", + "NUMBER_OF_FRAMES": "2268", + "NUMBER_OF_FRAMES-eng": "2268", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "921", + "BPS-eng": "921", + "DURATION": "02:07:11.958000000", + "DURATION-eng": "02:07:11.958000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "878697", + "NUMBER_OF_BYTES-eng": "878697", + "NUMBER_OF_FRAMES": "344", + "NUMBER_OF_FRAMES-eng": "344", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1021", + "BPS-eng": "1021", + "DURATION": "02:07:09.247000000", + "DURATION-eng": "02:07:09.247000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "973828", + "NUMBER_OF_BYTES-eng": "973828", + "NUMBER_OF_FRAMES": "302", + "NUMBER_OF_FRAMES-eng": "302", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14834", + "BPS-eng": "14834", + "DURATION": "02:06:58.653000000", + "DURATION-eng": "02:06:58.653000000", + "LANGUAGE": "bul", + "NUMBER_OF_BYTES": "14127220", + "NUMBER_OF_BYTES-eng": "14127220", + "NUMBER_OF_FRAMES": "1902", + "NUMBER_OF_FRAMES-eng": "1902", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14357", + "BPS-eng": "14357", + "DURATION": "02:06:58.736000000", + "DURATION-eng": "02:06:58.736000000", + "LANGUAGE": "scr", + "NUMBER_OF_BYTES": "13673606", + "NUMBER_OF_BYTES-eng": "13673606", + "NUMBER_OF_FRAMES": "2182", + "NUMBER_OF_FRAMES-eng": "2182", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14373", + "BPS-eng": "14373", + "DURATION": "02:06:58.736000000", + "DURATION-eng": "02:06:58.736000000", + "LANGUAGE": "cze", + "NUMBER_OF_BYTES": "13688200", + "NUMBER_OF_BYTES-eng": "13688200", + "NUMBER_OF_FRAMES": "2190", + "NUMBER_OF_FRAMES-eng": "2190", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15950", + "BPS-eng": "15950", + "DURATION": "02:03:46.586000000", + "DURATION-eng": "02:03:46.586000000", + "LANGUAGE": "ita", + "NUMBER_OF_BYTES": "14806829", + "NUMBER_OF_BYTES-eng": "14806829", + "NUMBER_OF_FRAMES": "2268", + "NUMBER_OF_FRAMES-eng": "2268", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "37374", + "BPS-eng": "37374", + "DURATION": "02:07:12.083000000", + "DURATION-eng": "02:07:12.083000000", + "LANGUAGE": "ita", + "NUMBER_OF_BYTES": "35655371", + "NUMBER_OF_BYTES-eng": "35655371", + "NUMBER_OF_FRAMES": "4002", + "NUMBER_OF_FRAMES-eng": "4002", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38251", + "BPS-eng": "38251", + "DURATION": "02:07:09.247000000", + "DURATION-eng": "02:07:09.247000000", + "LANGUAGE": "ita", + "NUMBER_OF_BYTES": "36478421", + "NUMBER_OF_BYTES-eng": "36478421", + "NUMBER_OF_FRAMES": "3720", + "NUMBER_OF_FRAMES-eng": "3720", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "18708", + "BPS-eng": "18708", + "DURATION": "02:06:58.820000000", + "DURATION-eng": "02:06:58.820000000", + "LANGUAGE": "rum", + "NUMBER_OF_BYTES": "17817315", + "NUMBER_OF_BYTES-eng": "17817315", + "NUMBER_OF_FRAMES": "2296", + "NUMBER_OF_FRAMES-eng": "2296", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "19605", + "BPS-eng": "19605", + "DURATION": "02:06:58.569000000", + "DURATION-eng": "02:06:58.569000000", + "LANGUAGE": "rus", + "NUMBER_OF_BYTES": "18670872", + "NUMBER_OF_BYTES-eng": "18670872", + "NUMBER_OF_FRAMES": "2336", + "NUMBER_OF_FRAMES-eng": "2336", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17056", + "BPS-eng": "17056", + "DURATION": "02:06:58.820000000", + "DURATION-eng": "02:06:58.820000000", + "LANGUAGE": "slv", + "NUMBER_OF_BYTES": "16244108", + "NUMBER_OF_BYTES-eng": "16244108", + "NUMBER_OF_FRAMES": "2294", + "NUMBER_OF_FRAMES-eng": "2294", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7641.593000", + "duration_ts": 7641593, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17456", + "BPS-eng": "17456", + "DURATION": "02:06:58.736000000", + "DURATION-eng": "02:06:58.736000000", + "LANGUAGE": "tur", + "NUMBER_OF_BYTES": "16624136", + "NUMBER_OF_BYTES-eng": "16624136", + "NUMBER_OF_FRAMES": "2296", + "NUMBER_OF_FRAMES-eng": "2296", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.6.0 ('Garden of Dreams') 64bit built on Feb 8 2015 13:04:34", + "_STATISTICS_WRITING_DATE_UTC": "2015-03-17 17:36:43", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-03-17 17:36:43" + }, + "time_base": "1/1000" + } + ] + }, + "Shrek 2 (2004)/Shrek.2.2004.BluRay.810p.AC3.x264-PRoDJi.dual.mkv": { + "format": { + "bit_rate": "6771883", + "duration": "5544.298000", + "filename": "Shrek 2 (2004)/Shrek.2.2004.BluRay.810p.AC3.x264-PRoDJi.dual.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 12, + "probe_score": 100, + "size": "4693167603", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-04T09:24:49.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 810, + "coded_width": 1440, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 810, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5488850", + "BPS-eng": "5488850", + "DURATION": "01:32:24.298000000", + "DURATION-eng": "01:32:24.298000000", + "NUMBER_OF_BYTES": "3803978141", + "NUMBER_OF_BYTES-eng": "3803978141", + "NUMBER_OF_FRAMES": "132930", + "NUMBER_OF_FRAMES-eng": "132930", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "eng", + "title": "@5486Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:32:23.328000000", + "DURATION-eng": "01:32:23.328000000", + "NUMBER_OF_BYTES": "443466240", + "NUMBER_OF_BYTES-eng": "443466240", + "NUMBER_OF_FRAMES": "173229", + "NUMBER_OF_FRAMES-eng": "173229", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "eng", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "67", + "BPS-eng": "67", + "DURATION": "01:24:12.945000000", + "DURATION-eng": "01:24:12.945000000", + "NUMBER_OF_BYTES": "42905", + "NUMBER_OF_BYTES-eng": "42905", + "NUMBER_OF_FRAMES": "1235", + "NUMBER_OF_FRAMES-eng": "1235", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "58", + "BPS-eng": "58", + "DURATION": "01:24:31.445000000", + "DURATION-eng": "01:24:31.445000000", + "NUMBER_OF_BYTES": "36876", + "NUMBER_OF_BYTES-eng": "36876", + "NUMBER_OF_FRAMES": "1028", + "NUMBER_OF_FRAMES-eng": "1028", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "46", + "BPS-eng": "46", + "DURATION": "01:21:54.500000000", + "DURATION-eng": "01:21:54.500000000", + "NUMBER_OF_BYTES": "28728", + "NUMBER_OF_BYTES-eng": "28728", + "NUMBER_OF_FRAMES": "952", + "NUMBER_OF_FRAMES-eng": "952", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "bos" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:24:13.044000000", + "DURATION-eng": "01:24:13.044000000", + "NUMBER_OF_BYTES": "37320", + "NUMBER_OF_BYTES-eng": "37320", + "NUMBER_OF_FRAMES": "1027", + "NUMBER_OF_FRAMES-eng": "1027", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "01:25:20.079000000", + "DURATION-eng": "01:25:20.079000000", + "NUMBER_OF_BYTES": "34067", + "NUMBER_OF_BYTES-eng": "34067", + "NUMBER_OF_FRAMES": "1092", + "NUMBER_OF_FRAMES-eng": "1092", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "118", + "BPS-eng": "118", + "DURATION": "01:24:07.881000000", + "DURATION-eng": "01:24:07.881000000", + "NUMBER_OF_BYTES": "74592", + "NUMBER_OF_BYTES-eng": "74592", + "NUMBER_OF_FRAMES": "1186", + "NUMBER_OF_FRAMES-eng": "1186", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:24:12.970000000", + "DURATION-eng": "01:24:12.970000000", + "NUMBER_OF_BYTES": "41977", + "NUMBER_OF_BYTES-eng": "41977", + "NUMBER_OF_FRAMES": "1144", + "NUMBER_OF_FRAMES-eng": "1144", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:24:23.827000000", + "DURATION-eng": "01:24:23.827000000", + "NUMBER_OF_BYTES": "50866", + "NUMBER_OF_BYTES-eng": "50866", + "NUMBER_OF_FRAMES": "1031", + "NUMBER_OF_FRAMES-eng": "1031", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5544.298000", + "duration_ts": 5544298, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "01:24:11.678000000", + "DURATION-eng": "01:24:11.678000000", + "NUMBER_OF_BYTES": "35302", + "NUMBER_OF_BYTES-eng": "35302", + "NUMBER_OF_FRAMES": "1005", + "NUMBER_OF_FRAMES-eng": "1005", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 11, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:32:23.392000000", + "DURATION-eng": "01:32:23.392000000", + "NUMBER_OF_BYTES": "443471360", + "NUMBER_OF_BYTES-eng": "443471360", + "NUMBER_OF_FRAMES": "173231", + "NUMBER_OF_FRAMES-eng": "173231", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:24:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:24:49", + "language": "tur", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + } + ] + }, + "The League Of Extraordinary Gentlemen/tlf-tloeg.bd.cd2.mkv": { + "format": { + "bit_rate": "1945883", + "duration": "3011.093000", + "filename": "The League Of Extraordinary Gentlemen/tlf-tloeg.bd.cd2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732404465", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-06-06T00:22:04.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 400, + "coded_width": 944, + "display_aspect_ratio": "59:25", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 400, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 944 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 21, + "start_time": "0.021000", + "time_base": "1/1000" + } + ] + }, + "Evolution (2001)/Evolution.avi": { + "format": { + "bit_rate": "962448", + "duration": "6103.104000", + "filename": "Evolution (2001)/Evolution.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734240768", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "835094", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 592, + "display_aspect_ratio": "37:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6103.103103", + "duration_ts": 146328, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "146328", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114648", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6103.104000", + "duration_ts": 254296, + "index": 1, + "nb_frames": "254296", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "La Femme Nikita (1990)/La.Femme.Nikita.1990.iNTERNAL.BDRip.x264-LiBRARiANS.mkv": { + "format": { + "bit_rate": "1325262", + "duration": "7033.076000", + "filename": "La Femme Nikita (1990)/La.Femme.Nikita.1990.iNTERNAL.BDRip.x264-LiBRARiANS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "1165084103", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-26T15:24:24.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 306, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 306, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1035570", + "BPS-eng": "1035570", + "DURATION": "01:57:13.026000000", + "DURATION-eng": "01:57:13.026000000", + "NUMBER_OF_BYTES": "910399148", + "NUMBER_OF_BYTES-eng": "910399148", + "NUMBER_OF_FRAMES": "168624", + "NUMBER_OF_FRAMES-eng": "168624", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-26 15:24:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-26 15:24:24" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "143888", + "BPS-eng": "143888", + "DURATION": "01:57:13.067000000", + "DURATION-eng": "01:57:13.067000000", + "NUMBER_OF_BYTES": "126497064", + "NUMBER_OF_BYTES-eng": "126497064", + "NUMBER_OF_FRAMES": "329675", + "NUMBER_OF_FRAMES-eng": "329675", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-26 15:24:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-26 15:24:24", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "142722", + "BPS-eng": "142722", + "DURATION": "01:57:13.067000000", + "DURATION-eng": "01:57:13.067000000", + "NUMBER_OF_BYTES": "125472199", + "NUMBER_OF_BYTES-eng": "125472199", + "NUMBER_OF_FRAMES": "329675", + "NUMBER_OF_FRAMES-eng": "329675", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-26 15:24:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-26 15:24:24", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7033.076000", + "duration_ts": 7033076, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "22", + "BPS-eng": "22", + "DURATION": "01:51:10.623000000", + "DURATION-eng": "01:51:10.623000000", + "NUMBER_OF_BYTES": "19043", + "NUMBER_OF_BYTES-eng": "19043", + "NUMBER_OF_FRAMES": "763", + "NUMBER_OF_FRAMES-eng": "763", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-26 15:24:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-26 15:24:24", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7033.076000", + "duration_ts": 7033076, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "24", + "BPS-eng": "24", + "DURATION": "01:51:10.623000000", + "DURATION-eng": "01:51:10.623000000", + "NUMBER_OF_BYTES": "20382", + "NUMBER_OF_BYTES-eng": "20382", + "NUMBER_OF_FRAMES": "880", + "NUMBER_OF_FRAMES-eng": "880", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-26 15:24:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-26 15:24:24", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Dark Crystal (1982)/8e71fd77afd947cea06a8b392f17d260.mkv": { + "format": { + "bit_rate": "15120818", + "duration": "5587.584000", + "filename": "The Dark Crystal (1982)/8e71fd77afd947cea06a8b392f17d260.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "10561105425", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13609196", + "BPS-eng": "13609196", + "DURATION": "01:33:07.582000000", + "DURATION-eng": "01:33:07.582000000", + "NUMBER_OF_BYTES": "9505312541", + "NUMBER_OF_BYTES-eng": "9505312541", + "NUMBER_OF_FRAMES": "133968", + "NUMBER_OF_FRAMES-eng": "133968", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:33:07.584000000", + "DURATION-eng": "01:33:07.584000000", + "NUMBER_OF_BYTES": "1053958032", + "NUMBER_OF_BYTES-eng": "1053958032", + "NUMBER_OF_FRAMES": "523836", + "NUMBER_OF_FRAMES-eng": "523836", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5587.584000", + "duration_ts": 5587584, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:26:48.828000000", + "DURATION-eng": "01:26:48.828000000", + "NUMBER_OF_BYTES": "19181", + "NUMBER_OF_BYTES-eng": "19181", + "NUMBER_OF_FRAMES": "708", + "NUMBER_OF_FRAMES-eng": "708", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5587.584000", + "duration_ts": 5587584, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "36", + "BPS-eng": "36", + "DURATION": "01:27:45.552000000", + "DURATION-eng": "01:27:45.552000000", + "NUMBER_OF_BYTES": "23870", + "NUMBER_OF_BYTES-eng": "23870", + "NUMBER_OF_FRAMES": "969", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "An Evening With Beverly Luff Linn (2018)/02b2e92372eb4b57a3ac4166b907973c.mkv": { + "format": { + "bit_rate": "5524884", + "duration": "6488.489000", + "filename": "An Evening With Beverly Luff Linn (2018)/02b2e92372eb4b57a3ac4166b907973c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4481019367", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-10-19T04:06:05.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "CMRG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1032, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:258", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1032, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "5139079", + "BPS-eng": "5139079", + "DURATION": "01:48:08.447000000", + "DURATION-eng": "01:48:08.447000000", + "NUMBER_OF_BYTES": "4168080725", + "NUMBER_OF_BYTES-eng": "4168080725", + "NUMBER_OF_FRAMES": "155567", + "NUMBER_OF_FRAMES-eng": "155567", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-19 04:06:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-19 04:06:05", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:48:08.480000000", + "DURATION-eng": "01:48:08.480000000", + "NUMBER_OF_BYTES": "311447040", + "NUMBER_OF_BYTES-eng": "311447040", + "NUMBER_OF_FRAMES": "202765", + "NUMBER_OF_FRAMES-eng": "202765", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-19 04:06:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-19 04:06:05", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "True Grit (2011)/True.Grit.2011.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "1746912", + "duration": "6620.480000", + "filename": "True Grit (2011)/True.Grit.2011.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1445674742", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2012-10-23T03:15:45.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1653769", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6620.363333", + "duration_ts": 158888720, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "158730", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-10-22T20:51:18.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "89336", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6620.480000", + "duration_ts": 317783040, + "index": 1, + "max_bit_rate": "130088", + "nb_frames": "310335", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-10-23T03:17:16.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Its All Gone Pete Tong/Its.All.Gone.Pete.Tong.2004.LIMITED.DVDRip.XviD-iMBT.avi": { + "format": { + "bit_rate": "1063106", + "duration": "5533.536000", + "filename": "Its All Gone Pete Tong/Its.All.Gone.Pete.Tong.2004.LIMITED.DVDRip.XviD-iMBT.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735342592", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2439/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "920272", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5533.533534", + "duration_ts": 132672, + "has_b_frames": 0, + "height": 256, + "index": 0, + "level": 3, + "nb_frames": "132672", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130128", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5533.536000", + "duration_ts": 230564, + "index": 1, + "nb_frames": "230564", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Jason Bourne (2016)/Jason.Bourne.2016.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "10170202", + "duration": "7391.595000", + "filename": "Jason Bourne (2016)/Jason.Bourne.2016.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "9396752501", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-11-21T06:35:36.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7889887", + "BPS-eng": "7889887", + "DURATION": "02:03:11.593000000", + "DURATION-eng": "02:03:11.593000000", + "NUMBER_OF_BYTES": "7289854382", + "NUMBER_OF_BYTES-eng": "7289854382", + "NUMBER_OF_FRAMES": "177221", + "NUMBER_OF_FRAMES-eng": "177221", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-21 06:35:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-21 06:35:36", + "language": "eng", + "title": "@7886Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "02:03:11.595000000", + "DURATION-eng": "02:03:11.595000000", + "NUMBER_OF_BYTES": "1394239544", + "NUMBER_OF_BYTES-eng": "1394239544", + "NUMBER_OF_FRAMES": "692962", + "NUMBER_OF_FRAMES-eng": "692962", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-21 06:35:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-21 06:35:36", + "language": "eng", + "title": "DTS@1536Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "767999", + "BPS-eng": "767999", + "DURATION": "02:03:11.595000000", + "DURATION-eng": "02:03:11.595000000", + "NUMBER_OF_BYTES": "709593088", + "NUMBER_OF_BYTES-eng": "709593088", + "NUMBER_OF_FRAMES": "692962", + "NUMBER_OF_FRAMES-eng": "692962", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-21 06:35:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-21 06:35:36", + "language": "tur", + "title": "DTS@768Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7391.595000", + "duration_ts": 7391595, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "37", + "BPS-eng": "37", + "DURATION": "01:53:00.048000000", + "DURATION-eng": "01:53:00.048000000", + "NUMBER_OF_BYTES": "31753", + "NUMBER_OF_BYTES-eng": "31753", + "NUMBER_OF_FRAMES": "1037", + "NUMBER_OF_FRAMES-eng": "1037", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-21 06:35:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-21 06:35:36", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7391.595000", + "duration_ts": 7391595, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "42", + "BPS-eng": "42", + "DURATION": "01:53:18.447000000", + "DURATION-eng": "01:53:18.447000000", + "NUMBER_OF_BYTES": "36146", + "NUMBER_OF_BYTES-eng": "36146", + "NUMBER_OF_FRAMES": "837", + "NUMBER_OF_FRAMES-eng": "837", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-21 06:35:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-21 06:35:36", + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Man Of Steel (2013)/Man.Of.Steel.2013.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1133820", + "duration": "8168.405000", + "filename": "Man Of Steel (2013)/Man.Of.Steel.2013.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1157687971", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-10-17T16:16:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "80688", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8168.405333", + "duration_ts": 392083456, + "index": 0, + "max_bit_rate": "133488", + "nb_frames": "382894", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-10-17T16:11:46.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1049031", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8168.326833", + "duration_ts": 196039844, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "195844", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-10-17T16:16:18.000000Z", + "handler_name": "Of.Steel.2013.BluRay.720p.H264.avs.264@GPAC0.5.1-DEV-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Journey To The Center Of The Earth (2008)/Journey To The Center Of The Earth 2008 3Li BluRay 720p.mkv": { + "format": { + "bit_rate": "5259905", + "duration": "5554.848000", + "filename": "Journey To The Center Of The Earth (2008)/Journey To The Center Of The Earth 2008 3Li BluRay 720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3652246985", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-05-04T03:09:38.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0", + "title": "Journey To The Center Of The Earth By 3Li" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Journey To The Center Of The Earth By 3Li" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Journey To The Center Of The Earth" + }, + "time_base": "1/1000" + } + ] + }, + "Jesus Camp/Jesus.Camp.DVDRip.XviD.AC3.avi": { + "format": { + "bit_rate": "2463001", + "duration": "5084.918252", + "filename": "Jesus Camp/Jesus.Camp.DVDRip.XviD.AC3.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1565519872", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2264346", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5084.918252", + "duration_ts": 121916, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 5, + "nb_frames": "121916", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "121798656", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Nacho Libre/Nacho Libre.avi": { + "format": { + "bit_rate": "1062236", + "duration": "5527.444111", + "filename": "Nacho Libre/Nacho Libre.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733931520", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "860736", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 528, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5527.444111", + "duration_ts": 132526, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "132526", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 528 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "132658659", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Accepted/Accepted.avi": { + "format": { + "bit_rate": "1052972", + "duration": "5585.502169", + "filename": "Accepted/Accepted.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735172608", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "915663", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 620, + "display_aspect_ratio": "155:64", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5585.502169", + "duration_ts": 133918, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "133918", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 620 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "232729", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Shaft (2019)/c9d58fa6dbd845c695cd847b8f8f56bc.mkv": { + "format": { + "bit_rate": "4966169", + "duration": "6720.542000", + "filename": "Shaft (2019)/c9d58fa6dbd845c695cd847b8f8f56bc.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 33, + "probe_score": 100, + "size": "4171918664", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-28T07:06:58.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4191174", + "DURATION-eng": "01:52:00.542000000", + "NUMBER_OF_BYTES-eng": "3520870846", + "NUMBER_OF_FRAMES-eng": "161293", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "768000", + "DURATION-eng": "01:52:00.512000000", + "NUMBER_OF_BYTES-eng": "645169152", + "NUMBER_OF_FRAMES-eng": "210016", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "89", + "DURATION-eng": "01:51:06.292000000", + "NUMBER_OF_BYTES-eng": "74938", + "NUMBER_OF_FRAMES-eng": "2210", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "99", + "DURATION-eng": "01:51:12.583000000", + "NUMBER_OF_BYTES-eng": "82994", + "NUMBER_OF_FRAMES-eng": "2515", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "128", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "106190", + "NUMBER_OF_FRAMES-eng": "1839", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:50:24.417000000", + "NUMBER_OF_BYTES-eng": "56484", + "NUMBER_OF_FRAMES-eng": "1978", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "57", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "47654", + "NUMBER_OF_FRAMES-eng": "1391", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "63", + "DURATION-eng": "01:50:18.292000000", + "NUMBER_OF_BYTES-eng": "52724", + "NUMBER_OF_FRAMES-eng": "1785", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "104", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "86478", + "NUMBER_OF_FRAMES-eng": "1880", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "63", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "52720", + "NUMBER_OF_FRAMES-eng": "1731", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "60", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "49972", + "NUMBER_OF_FRAMES-eng": "1946", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "49152", + "NUMBER_OF_FRAMES-eng": "1974", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "73", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "60754", + "NUMBER_OF_FRAMES-eng": "1777", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "103", + "DURATION-eng": "01:50:24.625000000", + "NUMBER_OF_BYTES-eng": "85937", + "NUMBER_OF_FRAMES-eng": "1778", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "166", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "137669", + "NUMBER_OF_FRAMES-eng": "1988", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "hin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "61", + "DURATION-eng": "01:50:24.417000000", + "NUMBER_OF_BYTES-eng": "51147", + "NUMBER_OF_FRAMES-eng": "1963", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "66", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "54698", + "NUMBER_OF_FRAMES-eng": "1848", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "66", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "55124", + "NUMBER_OF_FRAMES-eng": "1867", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51", + "DURATION-eng": "01:50:24.417000000", + "NUMBER_OF_BYTES-eng": "42906", + "NUMBER_OF_FRAMES-eng": "1813", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "71", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "58879", + "NUMBER_OF_FRAMES-eng": "1961", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "49410", + "NUMBER_OF_FRAMES-eng": "1914", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "46981", + "NUMBER_OF_FRAMES-eng": "1473", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "55", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "45965", + "NUMBER_OF_FRAMES-eng": "1868", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "63", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "52668", + "NUMBER_OF_FRAMES-eng": "1902", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "65", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "54247", + "NUMBER_OF_FRAMES-eng": "1896", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "64", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "52969", + "NUMBER_OF_FRAMES-eng": "1900", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "119", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "99217", + "NUMBER_OF_FRAMES-eng": "1990", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "63", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "52297", + "NUMBER_OF_FRAMES-eng": "1627", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "148", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "122999", + "NUMBER_OF_FRAMES-eng": "1984", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "62", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "51956", + "NUMBER_OF_FRAMES-eng": "1941", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "84", + "DURATION-eng": "01:50:16.292000000", + "NUMBER_OF_BYTES-eng": "69705", + "NUMBER_OF_FRAMES-eng": "1955", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "vie" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "64", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "52998", + "NUMBER_OF_FRAMES-eng": "1980", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6720.542000", + "duration_ts": 6720542, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:50:24.375000000", + "NUMBER_OF_BYTES-eng": "56455", + "NUMBER_OF_FRAMES-eng": "1982", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-28 07:06:58", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Final Fantasy VII Advent Children/Final.Fantasy.VII-Advent.Children.DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1080641", + "duration": "5432.891225", + "filename": "Final Fantasy VII Advent Children/Final.Fantasy.VII-Advent.Children.DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733876224", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "879191", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 528, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5432.891225", + "duration_ts": 130259, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "130259", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 528 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "130355712", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Man Up (2015)/Man.Up.2015.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "1263771", + "duration": "5275.860000", + "filename": "Man Up (2015)/Man.Up.2015.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "833435165", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-09-21T14:33:28.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64513", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5275.861333", + "duration_ts": 253241344, + "index": 0, + "max_bit_rate": "76128", + "nb_frames": "247306", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-09-21T14:30:47.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24/1", + "bit_rate": "1195256", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5275.791667", + "duration_ts": 126619000, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "126619", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.083333", + "tags": { + "creation_time": "2015-09-21T14:33:31.000000Z", + "handler_name": "Up.2015.WEB-DL.720p.H264.avs.264@GPAC0.5.1-DEV-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Revolutionary Road (2008)/Revolutionary Road[2008]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "857747", + "duration": "6845.680000", + "filename": "Revolutionary Road (2008)/Revolutionary Road[2008]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733982720", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 664, + "display_aspect_ratio": "83:34", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6845.680000", + "duration_ts": 171142, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "171142", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 664 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "95837623", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "The Original Kings Of Comedy (2000)/The.Original.Kings.of.Comedy.2000.720p.HULU.WEB-DL.AAC2.0.H.264-monkee.mkv": { + "format": { + "bit_rate": "3124727", + "duration": "6667.136000", + "filename": "The Original Kings Of Comedy (2000)/The.Original.Kings.of.Comedy.2000.720p.HULU.WEB-DL.AAC2.0.H.264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2604123212", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-27T19:31:39.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Sausage Party (2016)/Sausage.Party.2016.720p.BluRay.DTS.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "8292387", + "duration": "5325.363000", + "filename": "Sausage Party (2016)/Sausage.Party.2016.720p.BluRay.DTS.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5519996894", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-10-26T15:35:59Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "25151/1049", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1049/50302", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25151/1049", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Talladega Nights - Ballad of Ricky Bobby/Talladega Nights-Ballad of Ricky- Bobby-DVDrip-ENG.avi": { + "format": { + "bit_rate": "806431", + "duration": "7283.992326", + "filename": "Talladega Nights - Ballad of Ricky Bobby/Talladega Nights-Ballad of Ricky- Bobby-DVDrip-ENG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734255104", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "701131", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 234, + "coded_width": 580, + "display_aspect_ratio": "290:117", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7283.992326", + "duration_ts": 174641, + "has_b_frames": 1, + "height": 234, + "index": 0, + "level": 5, + "nb_frames": "174641", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 580 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "303480", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Amelie (2001)/AMELIE.2001.DVDRip.(EngSubs).mkv": { + "format": { + "bit_rate": "1581855", + "duration": "7310.760000", + "filename": "Amelie (2001)/AMELIE.2001.DVDRip.(EngSubs).mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1445570672", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-09-22T23:15:33.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 352, + "coded_width": 704, + "display_aspect_ratio": "102:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 352, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "51:43", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "Main", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7310.760000", + "duration_ts": 7310760, + "height": 480, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + } + ] + }, + "Reefer Madness/KISS reefer madness 1938.avi": { + "format": { + "bit_rate": "450458", + "duration": "4097.593500", + "filename": "Reefer Madness/KISS reefer madness 1938.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "230724502", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bit_rate": "310460", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/30000", + "codec_type": "video", + "coded_height": 288, + "coded_width": 352, + "display_aspect_ratio": "11:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4097.593500", + "duration_ts": 122805, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "122805", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/30000", + "width": 352 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "65560988", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Waiting for Guffman/Waiting for Guffman.avi": { + "format": { + "bit_rate": "1166873", + "duration": "5023.481815", + "filename": "Waiting for Guffman/Waiting for Guffman.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732721152", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "967911", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 544, + "display_aspect_ratio": "34:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5023.481815", + "duration_ts": 120443, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": -99, + "nb_frames": "120443", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 544 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "120562479", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Rendition (2007)/Rendition[2007]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "801908", + "duration": "7339.339339", + "filename": "Rendition (2007)/Rendition[2007]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735684608", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "680549", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 616, + "display_aspect_ratio": "77:32", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7339.339339", + "duration_ts": 175968, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "175968", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 616 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "102750720", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Green Lantern (2011)/Green Lantern 2011 1080p BluRay x264 AAC - Ozlem.mp4": { + "format": { + "bit_rate": "2105783", + "duration": "6842.026667", + "filename": "Green Lantern (2011)/Green Lantern 2011 1080p BluRay x264 AAC - Ozlem.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1800978447", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2014-09-16T05:19:27.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2008940", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6840.583750", + "duration_ts": 164174010, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "164010", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-09-15T21:34:41.000000Z", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93158", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6842.026667", + "duration_ts": 328417280, + "index": 1, + "max_bit_rate": "130880", + "nb_frames": "320720", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-09-16T05:19:35.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Wake Up Ron Burgundy The Lost Movie (2004)/5094ff143b0c46dfb8a63280bf4f8242.mkv": { + "format": { + "bit_rate": "3007394", + "duration": "5575.694000", + "filename": "Wake Up Ron Burgundy The Lost Movie (2004)/5094ff143b0c46dfb8a63280bf4f8242.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2096039164", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:32:55.694000000" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:32:55.680000000" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5575.694000", + "duration_ts": 5575694, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:28:33.308000000", + "ENCODER": "Lavc57.106.101 ssa" + }, + "time_base": "1/1000" + } + ] + }, + "Despicable Me (2010)/Despicable Me.mp4": { + "format": { + "bit_rate": "3168092", + "duration": "5688.746667", + "filename": "Despicable Me (2010)/Despicable Me.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2252809207", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2010-12-07T09:34:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "2724291", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5688.608330", + "duration_ts": 380528077, + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "136390", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-12-07T01:22:17.000000Z", + "encoder": "AVC Coding", + "handler_name": "X264 Video Media Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "439835", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5688.746667", + "duration_ts": 273059840, + "index": 1, + "max_bit_rate": "532456", + "nb_frames": "266660", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-12-07T09:35:23.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Justice League (2017)/Justice.League.2017.MULTI.1080p.BluRay.x264-VENUE.mkv": { + "format": { + "bit_rate": "9475069", + "duration": "7202.624000", + "filename": "Justice League (2017)/Justice.League.2017.MULTI.1080p.BluRay.x264-VENUE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8530670458", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-02-27T16:59:20.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8576851", + "BPS-eng": "8576851", + "DURATION": "02:00:02.612000000", + "DURATION-eng": "02:00:02.612000000", + "NUMBER_OF_BYTES": "7721966310", + "NUMBER_OF_BYTES-eng": "7721966310", + "NUMBER_OF_FRAMES": "172690", + "NUMBER_OF_FRAMES-eng": "172690", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-27 16:59:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-27 16:59:20" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "02:00:02.624000000", + "DURATION-eng": "02:00:02.624000000", + "NUMBER_OF_BYTES": "403346944", + "NUMBER_OF_BYTES-eng": "403346944", + "NUMBER_OF_FRAMES": "225082", + "NUMBER_OF_FRAMES-eng": "225082", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-27 16:59:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-27 16:59:20", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "02:00:02.624000000", + "DURATION-eng": "02:00:02.624000000", + "NUMBER_OF_BYTES": "403346944", + "NUMBER_OF_BYTES-eng": "403346944", + "NUMBER_OF_FRAMES": "225082", + "NUMBER_OF_FRAMES-eng": "225082", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-27 16:59:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-27 16:59:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7202.624000", + "duration_ts": 7202624, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:57:50.647000000", + "DURATION-eng": "01:57:50.647000000", + "NUMBER_OF_BYTES": "585", + "NUMBER_OF_BYTES-eng": "585", + "NUMBER_OF_FRAMES": "21", + "NUMBER_OF_FRAMES-eng": "21", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-27 16:59:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-27 16:59:20", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7202.624000", + "duration_ts": 7202624, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38", + "BPS-eng": "38", + "DURATION": "01:59:04.721000000", + "DURATION-eng": "01:59:04.721000000", + "NUMBER_OF_BYTES": "34434", + "NUMBER_OF_BYTES-eng": "34434", + "NUMBER_OF_FRAMES": "1249", + "NUMBER_OF_FRAMES-eng": "1249", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-27 16:59:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-27 16:59:20", + "language": "fre" + }, + "time_base": "1/1000" + } + ] + }, + "Wallace and Gromit/Wallace and Gromit.avi": { + "format": { + "bit_rate": "1487539", + "duration": "5076.326326", + "filename": "Wallace and Gromit/Wallace and Gromit.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943904768", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1359286", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 672, + "display_aspect_ratio": "42:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5076.326326", + "duration_ts": 121710, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "121710", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115560", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5075.904000", + "duration_ts": 211496, + "index": 1, + "nb_frames": "211496", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Resident Evil Retribution (2012)/Resident.Evil.Retribution.2012.1080p.BluRay.H264.AAC-RARBG.mp4": { + "format": { + "bit_rate": "2730688", + "duration": "5737.824000", + "filename": "Resident Evil Retribution (2012)/Resident.Evil.Retribution.2012.1080p.BluRay.H264.AAC-RARBG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1958526262", + "start_time": "0.000000", + "tags": { + "comment": "RARBG.COM - Resident.Evil.Retribution.2012.1080p.BluRay.H264.AAC-RARBG", + "compatible_brands": "isomiso2avc1mp41", + "encoder": "Lavf55.37.102", + "major_brand": "isom", + "minor_version": "512", + "title": "RARBG.COM - Resident.Evil.Retribution.2012.1080p.BluRay.H264.AAC-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2500123", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5737.737988", + "duration_ts": 68784003, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "137568", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/11988", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "223998", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5737.824000", + "duration_ts": 275415552, + "index": 1, + "max_bit_rate": "223998", + "nb_frames": "268959", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5737.824000", + "duration_ts": 5737824, + "index": 2, + "nb_frames": "16", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Indiana Jones And The Raiders Of The Lost Ark (1981)/e830630926024c8d9fe5e371612355ff.mkv": { + "format": { + "bit_rate": "10859246", + "duration": "6918.829000", + "filename": "Indiana Jones And The Raiders Of The Lost Ark (1981)/e830630926024c8d9fe5e371612355ff.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "9391659061", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6918.829000", + "duration_ts": 6918829, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Crazy Heart (2009)/Crazy.Heart.2009.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "2332847", + "duration": "6697.258333", + "filename": "Crazy Heart (2009)/Crazy.Heart.2009.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1952960679", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2013-06-02T17:29:21.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1823545", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6697.190000", + "duration_ts": 160732560, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "160572", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-06-02T16:23:25.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "379704", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6697.258667", + "duration_ts": 321468416, + "index": 1, + "max_bit_rate": "483816", + "nb_frames": "313934", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-06-02T09:26:32.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124115", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6697.258667", + "duration_ts": 321468416, + "index": 2, + "max_bit_rate": "143880", + "nb_frames": "313934", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-06-02T09:14:58.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Harry Potter And The Goblet Of Fire (2005)/Harry Potter and the Goblet of Fire (2005) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv": { + "format": { + "bit_rate": "1921224", + "duration": "8700.320000", + "filename": "Harry Potter And The Goblet Of Fire (2005)/Harry Potter and the Goblet of Fire (2005) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "2089408752", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101", + "title": "Harry Potter and the Goblet of Fire (2005) - KartiKing - Movies.DigitalMaza.Org" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "689814", + "BPS-eng": "689814", + "DURATION": "02:25:00.317000000", + "DURATION-eng": "02:25:00.317000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "750200612", + "NUMBER_OF_BYTES-eng": "750200612", + "NUMBER_OF_FRAMES": "208599", + "NUMBER_OF_FRAMES-eng": "208599", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:54:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:54:03", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "123791", + "BPS-eng": "123791", + "DURATION": "02:25:00.318000000", + "DURATION-eng": "02:25:00.288000000", + "NUMBER_OF_BYTES": "134628090", + "NUMBER_OF_BYTES-eng": "134628090", + "NUMBER_OF_FRAMES": "203913", + "NUMBER_OF_FRAMES-eng": "203913", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:54:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:54:03", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "160000", + "BPS-eng": "160000", + "DURATION": "02:25:00.320000000", + "DURATION-eng": "02:25:00.320000000", + "NUMBER_OF_BYTES": "174006400", + "NUMBER_OF_BYTES-eng": "174006400", + "NUMBER_OF_FRAMES": "271885", + "NUMBER_OF_FRAMES-eng": "271885", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:54:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:54:03", + "language": "hin", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8700.320000", + "duration_ts": 8700320, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "48", + "BPS-eng": "48", + "DURATION": "02:23:04.626000000", + "DURATION-eng": "02:23:02.626000000", + "NUMBER_OF_BYTES": "52172", + "NUMBER_OF_BYTES-eng": "52172", + "NUMBER_OF_FRAMES": "1516", + "NUMBER_OF_FRAMES-eng": "1516", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:54:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:54:03", + "language": "eng", + "title": "Eng Subs - KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8700.320000", + "duration_ts": 8700320, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "00:00:20.000000000", + "DURATION-eng": "00:00:13.000000000", + "NUMBER_OF_BYTES": "51", + "NUMBER_OF_BYTES-eng": "51", + "NUMBER_OF_FRAMES": "2", + "NUMBER_OF_FRAMES-eng": "2", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:54:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:54:03", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + } + ] + }, + "The Forbidden Kingdom (2008)/The Forbidden Kingdom 2008 BDRip[A release-Lounge H.264 by Titan].mp4": { + "format": { + "bit_rate": "3232764", + "duration": "6266.366667", + "filename": "The Forbidden Kingdom (2008)/The Forbidden Kingdom 2008 BDRip[A release-Lounge H.264 by Titan].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2532210742", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2009-02-08T02:58:42.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2601779", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6266.260000", + "duration_ts": 150390240, + "has_b_frames": 1, + "height": 304, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "150240", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-02-08T02:58:42.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "497797", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6266.368000", + "duration_ts": 300785664, + "index": 1, + "max_bit_rate": "740984", + "nb_frames": "293736", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-02-08T03:05:04.000000Z", + "handler_name": "5.1", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127796", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6263.210667", + "duration_ts": 300634112, + "index": 2, + "max_bit_rate": "191080", + "nb_frames": "293588", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-02-08T03:06:27.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Akira (1988)/b2a0e551cdef4c9c94e6b0bd31119021.mkv": { + "format": { + "bit_rate": "12291884", + "duration": "7468.512000", + "filename": "Akira (1988)/b2a0e551cdef4c9c94e6b0bd31119021.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 14, + "probe_score": 100, + "size": "11475260785", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-08-12T17:23:51.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 1034, + "coded_width": 1920, + "display_aspect_ratio": "960:517", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1034, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "1080p @ 10.8 Mbps" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn", + "title": "5.1 DTS @ 1536 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "scr", + "title": "Croatian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7468.512000", + "duration_ts": 7468512, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Lolita/Lolita.mp4": { + "format": { + "bit_rate": "1390112", + "duration": "9218.240000", + "filename": "Lolita/Lolita.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1601799032", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T00:35:08.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "442010000/18436227", + "bit_rate": "1254180", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "18436227/884020000", + "codec_type": "video", + "coded_height": 386, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "320:193", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9218.113500", + "duration_ts": 829630215, + "has_b_frames": 1, + "height": 386, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "221005", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "8:9", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T00:35:08.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130582", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9218.240000", + "duration_ts": 442475520, + "index": 1, + "max_bit_rate": "163936", + "nb_frames": "432105", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T00:35:08.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "This Is The End (2013)/This.is.the.End.2013.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "997602", + "duration": "6168.618333", + "filename": "This Is The End (2013)/This.is.the.End.2013.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "769228419", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2013-09-13T02:11:12.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64511", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6168.618667", + "duration_ts": 296093696, + "index": 0, + "max_bit_rate": "89208", + "nb_frames": "289154", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-13T02:11:12.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "929171", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6168.537375", + "duration_ts": 148044897, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "147897", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-09-13T02:11:15.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Higher Learning/Higher Learning CD1.avi": { + "format": { + "bit_rate": "1549487", + "duration": "3779.696363", + "filename": "Higher Learning/Higher Learning CD1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732073984", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1418563", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3779.696363", + "duration_ts": 90622, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "90622", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "118256", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3779.640000", + "duration_ts": 157485, + "index": 1, + "nb_frames": "157485", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Wristcutters A Love Story (2006)/Wristcutters A Love Story[2006]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "1111425", + "duration": "5285.201869", + "filename": "Wristcutters A Love Story (2006)/Wristcutters A Love Story[2006]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734263296", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "974078", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 660, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5285.201869", + "duration_ts": 126718, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "126718", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 660 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "220217", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Dark Knight Rises (2012)/The.Dark.Knight.Rises.2012.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2157448", + "duration": "9872.873333", + "filename": "The Dark Knight Rises (2012)/The.Dark.Knight.Rises.2012.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2662526944", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-11-16T06:43:56.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2057875", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9872.821292", + "duration_ts": 947790844, + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "236711", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-11-16T06:43:56.000000Z", + "handler_name": "the dark knight rises 2012 1080p bluray x264-alliance", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9872.874667", + "duration_ts": 473897984, + "index": 1, + "max_bit_rate": "100848", + "nb_frames": "462791", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-16T06:45:04.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Repo Man/Repo.Man.mp4": { + "format": { + "bit_rate": "1724023", + "duration": "5303.000000", + "filename": "Repo Man/Repo.Man.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1142812015", + "start_time": "0.021333", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2005-12-27T11:54:39.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1592193", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5303.000000", + "duration_ts": 132575000, + "has_b_frames": 2, + "height": 336, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "2", + "nb_frames": "132575", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2000, + "start_time": "0.080000", + "tags": { + "creation_time": "2005-12-27T11:54:39.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/25000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127913", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5302.997333", + "duration_ts": 254543872, + "index": 1, + "max_bit_rate": "565840", + "nb_frames": "248578", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 1024, + "start_time": "0.021333", + "tags": { + "creation_time": "2005-12-27T11:56:27.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Three Kings/Three Kings.mkv": { + "format": { + "bit_rate": "2189221", + "duration": "6889.984500", + "filename": "Three Kings/Three Kings.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1885462848", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 362, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "66960:28417", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 362, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "186:157", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Legend of the Drunken Master (1994)/The Legend of the Drunken Master [Jackie Chan] [1994] DVD-RIP [ENG] - NEO.avi": { + "format": { + "bit_rate": "957800", + "duration": "6149.190858", + "filename": "The Legend of the Drunken Master (1994)/The Legend of the Drunken Master [Jackie Chan] [1994] DVD-RIP [ENG] - NEO.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736212472", + "start_time": "0.000000", + "tags": { + "encoder": "MEncoder dev-CVS-060101-18:59-4.0.2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "817107", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 576, + "display_aspect_ratio": "16384:6997", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6149.190858", + "duration_ts": 147433, + "has_b_frames": 1, + "height": 240, + "index": 0, + "level": 5, + "nb_frames": "147433", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "20480:20991", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "98387328", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "The Space Between Us (2017)/the.space.between.us.2017.1080p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4808046", + "duration": "6922.080000", + "filename": "The Space Between Us (2017)/the.space.between.us.2017.1080p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4160209914", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-01T18:30:20.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "American Beauty/American Beauty.mkv": { + "format": { + "bit_rate": "2256868", + "duration": "7295.588500", + "filename": "American Beauty/American Beauty.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2058147836", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 360, + "coded_width": 714, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "47:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 360, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "141:119", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 714 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Clash Of The Titans (2010)/Clash Of The Titans (2010) 1080p BrRip x264 - 1.5GB - YIFY.mp4": { + "format": { + "bit_rate": "2021455", + "duration": "6367.615000", + "filename": "Clash Of The Titans (2010)/Clash Of The Titans (2010) 1080p BrRip x264 - 1.5GB - YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1608981598", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-02-12T16:38:37.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1921598", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6367.569542", + "duration_ts": 611286676, + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "152669", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 4004, + "start_time": "0.041708", + "tags": { + "creation_time": "2012-02-12T16:38:37.000000Z", + "handler_name": "cbgb-clashtitans1080", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6367.616000", + "duration_ts": 305645568, + "index": 1, + "max_bit_rate": "101720", + "nb_frames": "298482", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-02-12T16:38:46.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Harry Potter And The Order Of The Phoenix (2007)/5b2b1af041b344c4aae6ab9dba85e8a7.mkv": { + "format": { + "bit_rate": "13304861", + "duration": "8293.376000", + "filename": "Harry Potter And The Order Of The Phoenix (2007)/5b2b1af041b344c4aae6ab9dba85e8a7.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 14, + "probe_score": 100, + "size": "13792777008", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-14T12:05:54.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Harry Potter and the Order of the Phoenix (2007) - UHD BluRay - 1080p HDR x265 - BMF" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 150, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "11737959", + "DURATION-eng": "02:18:13.369000000", + "NUMBER_OF_BYTES-eng": "12168403942", + "NUMBER_OF_FRAMES-eng": "198842", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1536000", + "DURATION-eng": "02:18:13.376000000", + "NUMBER_OF_BYTES-eng": "1592328192", + "NUMBER_OF_FRAMES-eng": "259168", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51", + "DURATION-eng": "02:07:01.322000000", + "NUMBER_OF_BYTES-eng": "49065", + "NUMBER_OF_FRAMES-eng": "1310", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "58", + "DURATION-eng": "02:07:01.322000000", + "NUMBER_OF_BYTES-eng": "55426", + "NUMBER_OF_FRAMES-eng": "1522", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23133", + "DURATION-eng": "02:17:45.508000000", + "NUMBER_OF_BYTES-eng": "23901385", + "NUMBER_OF_FRAMES-eng": "2712", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22451", + "DURATION-eng": "02:17:43.380000000", + "NUMBER_OF_BYTES-eng": "23191050", + "NUMBER_OF_FRAMES-eng": "2630", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "48840", + "NUMBER_OF_FRAMES-eng": "1335", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "41098", + "NUMBER_OF_FRAMES-eng": "1223", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "41620", + "NUMBER_OF_FRAMES-eng": "1216", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40", + "DURATION-eng": "02:17:41.003000000", + "NUMBER_OF_BYTES-eng": "41525", + "NUMBER_OF_FRAMES-eng": "1370", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "48004", + "NUMBER_OF_FRAMES-eng": "1263", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "49698", + "NUMBER_OF_FRAMES-eng": "1329", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "48038", + "NUMBER_OF_FRAMES-eng": "1458", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8293.376000", + "duration_ts": 8293376, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38", + "DURATION-eng": "02:17:45.507000000", + "NUMBER_OF_BYTES-eng": "39404", + "NUMBER_OF_FRAMES-eng": "1155", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 12:05:54", + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "Nikki Glaser Bangin (2019)/Nikki.Glaser.Bangin.2019.720p.NF.WEB-DL.DD+5.1.x264-monkee.mkv": { + "format": { + "bit_rate": "1873774", + "duration": "3815.312000", + "filename": "Nikki Glaser Bangin (2019)/Nikki.Glaser.Bangin.2019.720p.NF.WEB-DL.DD+5.1.x264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 32, + "probe_score": 100, + "size": "893629058", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-10-02T04:08:48.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1097674", + "BPS-eng": "1097674", + "DURATION": "01:03:35.312000000", + "DURATION-eng": "01:03:35.312000000", + "NUMBER_OF_BYTES": "523496432", + "NUMBER_OF_BYTES-eng": "523496432", + "NUMBER_OF_FRAMES": "91476", + "NUMBER_OF_FRAMES-eng": "91476", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "768000", + "BPS-eng": "768000", + "DURATION": "01:03:35.296000000", + "DURATION-eng": "01:03:35.296000000", + "NUMBER_OF_BYTES": "366268416", + "NUMBER_OF_BYTES-eng": "366268416", + "NUMBER_OF_FRAMES": "119228", + "NUMBER_OF_FRAMES-eng": "119228", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "114", + "BPS-eng": "114", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "54189", + "NUMBER_OF_BYTES-eng": "54189", + "NUMBER_OF_FRAMES": "1172", + "NUMBER_OF_FRAMES-eng": "1172", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "117", + "BPS-eng": "117", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "55943", + "NUMBER_OF_BYTES-eng": "55943", + "NUMBER_OF_FRAMES": "1252", + "NUMBER_OF_FRAMES-eng": "1252", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "181", + "BPS-eng": "181", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "86136", + "NUMBER_OF_BYTES-eng": "86136", + "NUMBER_OF_FRAMES": "1173", + "NUMBER_OF_FRAMES-eng": "1173", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "110", + "BPS-eng": "110", + "DURATION": "01:02:45.094000000", + "DURATION-eng": "01:02:45.094000000", + "NUMBER_OF_BYTES": "52007", + "NUMBER_OF_BYTES-eng": "52007", + "NUMBER_OF_FRAMES": "1127", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "97", + "BPS-eng": "97", + "DURATION": "01:03:15.166000000", + "DURATION-eng": "01:03:15.166000000", + "NUMBER_OF_BYTES": "46426", + "NUMBER_OF_BYTES-eng": "46426", + "NUMBER_OF_FRAMES": "1002", + "NUMBER_OF_FRAMES-eng": "1002", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "93", + "BPS-eng": "93", + "DURATION": "01:03:15.208000000", + "DURATION-eng": "01:03:15.208000000", + "NUMBER_OF_BYTES": "44128", + "NUMBER_OF_BYTES-eng": "44128", + "NUMBER_OF_FRAMES": "1161", + "NUMBER_OF_FRAMES-eng": "1161", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "160", + "BPS-eng": "160", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "76418", + "NUMBER_OF_BYTES-eng": "76418", + "NUMBER_OF_FRAMES": "1030", + "NUMBER_OF_FRAMES-eng": "1030", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "100", + "BPS-eng": "100", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "47552", + "NUMBER_OF_BYTES-eng": "47552", + "NUMBER_OF_FRAMES": "1196", + "NUMBER_OF_FRAMES-eng": "1196", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "99", + "BPS-eng": "99", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "47496", + "NUMBER_OF_BYTES-eng": "47496", + "NUMBER_OF_FRAMES": "1173", + "NUMBER_OF_FRAMES-eng": "1173", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "103", + "BPS-eng": "103", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "49354", + "NUMBER_OF_BYTES-eng": "49354", + "NUMBER_OF_FRAMES": "1173", + "NUMBER_OF_FRAMES-eng": "1173", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "101", + "BPS-eng": "101", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "48134", + "NUMBER_OF_BYTES-eng": "48134", + "NUMBER_OF_FRAMES": "1049", + "NUMBER_OF_FRAMES-eng": "1049", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "164", + "BPS-eng": "164", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "78380", + "NUMBER_OF_BYTES-eng": "78380", + "NUMBER_OF_FRAMES": "1147", + "NUMBER_OF_FRAMES-eng": "1147", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "94", + "BPS-eng": "94", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "44772", + "NUMBER_OF_BYTES-eng": "44772", + "NUMBER_OF_FRAMES": "1144", + "NUMBER_OF_FRAMES-eng": "1144", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "96", + "BPS-eng": "96", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "46083", + "NUMBER_OF_BYTES-eng": "46083", + "NUMBER_OF_FRAMES": "1147", + "NUMBER_OF_FRAMES-eng": "1147", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "98", + "BPS-eng": "98", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "46640", + "NUMBER_OF_BYTES-eng": "46640", + "NUMBER_OF_FRAMES": "1073", + "NUMBER_OF_FRAMES-eng": "1073", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "88", + "BPS-eng": "88", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "41910", + "NUMBER_OF_BYTES-eng": "41910", + "NUMBER_OF_FRAMES": "1073", + "NUMBER_OF_FRAMES-eng": "1073", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "144", + "BPS-eng": "144", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "68632", + "NUMBER_OF_BYTES-eng": "68632", + "NUMBER_OF_FRAMES": "1180", + "NUMBER_OF_FRAMES-eng": "1180", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "98", + "BPS-eng": "98", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "46661", + "NUMBER_OF_BYTES-eng": "46661", + "NUMBER_OF_FRAMES": "1119", + "NUMBER_OF_FRAMES-eng": "1119", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "87", + "BPS-eng": "87", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "41584", + "NUMBER_OF_BYTES-eng": "41584", + "NUMBER_OF_FRAMES": "1019", + "NUMBER_OF_FRAMES-eng": "1019", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "01:03:21.547000000", + "DURATION-eng": "01:03:21.547000000", + "NUMBER_OF_BYTES": "39833", + "NUMBER_OF_BYTES-eng": "39833", + "NUMBER_OF_FRAMES": "1077", + "NUMBER_OF_FRAMES-eng": "1077", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "109", + "BPS-eng": "109", + "DURATION": "01:03:12.705000000", + "DURATION-eng": "01:03:12.705000000", + "NUMBER_OF_BYTES": "52137", + "NUMBER_OF_BYTES-eng": "52137", + "NUMBER_OF_FRAMES": "1174", + "NUMBER_OF_FRAMES-eng": "1174", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "96", + "BPS-eng": "96", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "45994", + "NUMBER_OF_BYTES-eng": "45994", + "NUMBER_OF_FRAMES": "1158", + "NUMBER_OF_FRAMES-eng": "1158", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "99", + "BPS-eng": "99", + "DURATION": "01:03:22.006000000", + "DURATION-eng": "01:03:22.006000000", + "NUMBER_OF_BYTES": "47283", + "NUMBER_OF_BYTES-eng": "47283", + "NUMBER_OF_FRAMES": "1058", + "NUMBER_OF_FRAMES-eng": "1058", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "159", + "BPS-eng": "159", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "75808", + "NUMBER_OF_BYTES-eng": "75808", + "NUMBER_OF_FRAMES": "1092", + "NUMBER_OF_FRAMES-eng": "1092", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "93", + "BPS-eng": "93", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "44402", + "NUMBER_OF_BYTES-eng": "44402", + "NUMBER_OF_FRAMES": "1115", + "NUMBER_OF_FRAMES-eng": "1115", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "276", + "BPS-eng": "276", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "131349", + "NUMBER_OF_BYTES-eng": "131349", + "NUMBER_OF_FRAMES": "1173", + "NUMBER_OF_FRAMES-eng": "1173", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "107", + "BPS-eng": "107", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "50896", + "NUMBER_OF_BYTES-eng": "50896", + "NUMBER_OF_FRAMES": "1157", + "NUMBER_OF_FRAMES-eng": "1157", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "144", + "BPS-eng": "144", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "68885", + "NUMBER_OF_BYTES-eng": "68885", + "NUMBER_OF_FRAMES": "1173", + "NUMBER_OF_FRAMES-eng": "1173", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "vie" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "103", + "BPS-eng": "103", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "49240", + "NUMBER_OF_BYTES-eng": "49240", + "NUMBER_OF_FRAMES": "1173", + "NUMBER_OF_FRAMES-eng": "1173", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3815.312000", + "duration_ts": 3815312, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "105", + "BPS-eng": "105", + "DURATION": "01:03:21.714000000", + "DURATION-eng": "01:03:21.714000000", + "NUMBER_OF_BYTES": "50162", + "NUMBER_OF_BYTES-eng": "50162", + "NUMBER_OF_FRAMES": "1172", + "NUMBER_OF_FRAMES-eng": "1172", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-10-02 04:08:48", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-02 04:08:48", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Hook (1991)/bdd8fd0b1ff74d1f993d7544c103dccc.mkv": { + "format": { + "bit_rate": "6208519", + "duration": "8505.504000", + "filename": "Hook (1991)/bdd8fd0b1ff74d1f993d7544c103dccc.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6600823049", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-03-20T19:11:29Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5758600", + "DURATION-eng": "02:21:45.497000000", + "NUMBER_OF_BYTES-eng": "6122469807", + "NUMBER_OF_FRAMES-eng": "203928", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-21 06:48:36" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "02:21:45.504000000", + "NUMBER_OF_BYTES-eng": "476308224", + "NUMBER_OF_FRAMES-eng": "265797", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-21 06:48:36", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8505.504000", + "duration_ts": 8505504, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "02:14:19.251000000", + "NUMBER_OF_BYTES-eng": "46577", + "NUMBER_OF_FRAMES-eng": "1488", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-21 06:48:36", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Human Centipede (2009)/The Human Centipede.avi": { + "format": { + "bit_rate": "3416128", + "duration": "5518.021320", + "filename": "The Human Centipede (2009)/The Human Centipede.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2356283392", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "2956416", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "104271/2500000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5518.021320", + "duration_ts": 132300, + "has_b_frames": 1, + "height": 720, + "index": 0, + "level": 5, + "nb_frames": "132300", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "104271/2500000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "172438", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "4/125" + } + ] + }, + "What Happened To Monday (2017)/What.Happened.to.Monday.2017.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "1003288", + "duration": "7432.148333", + "filename": "What Happened To Monday (2017)/What.Happened.to.Monday.2017.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "932073875", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-08-20T18:15:48.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64551", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7432.149333", + "duration_ts": 356743168, + "index": 0, + "max_bit_rate": "122552", + "nb_frames": "348382", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-20T18:15:48.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24/1", + "bit_rate": "934726", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7432.083333", + "duration_ts": 178370000, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "178370", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.083333", + "tags": { + "creation_time": "2017-08-20T18:15:52.000000Z", + "handler_name": "What.Happened.to.Monday.2017.WEB-DL.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Her (2013)/flame-her.2013.1080p.bluray.x265.internal.mkv": { + "format": { + "bit_rate": "2804627", + "duration": "7566.208000", + "filename": "Her (2013)/flame-her.2013.1080p.bluray.x265.internal.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2652549341", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-07-25T21:14:05.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "level": 123, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2162647", + "BPS-eng": "2162647", + "DURATION": "02:06:06.184000000", + "DURATION-eng": "02:06:06.184000000", + "NUMBER_OF_BYTES": "2045373472", + "NUMBER_OF_BYTES-eng": "2045373472", + "NUMBER_OF_FRAMES": "181407", + "NUMBER_OF_FRAMES-eng": "181407", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-07-25 21:14:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-07-25 21:14:05", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:06:06.208000000", + "DURATION-eng": "02:06:06.208000000", + "NUMBER_OF_BYTES": "605296640", + "NUMBER_OF_BYTES-eng": "605296640", + "NUMBER_OF_FRAMES": "236444", + "NUMBER_OF_FRAMES-eng": "236444", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-07-25 21:14:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-07-25 21:14:05", + "language": "eng", + "title": "English AC3 640 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7566.208000", + "duration_ts": 7566208, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:55:43.602000000", + "DURATION-eng": "01:55:43.602000000", + "NUMBER_OF_BYTES": "58107", + "NUMBER_OF_BYTES-eng": "58107", + "NUMBER_OF_FRAMES": "1671", + "NUMBER_OF_FRAMES-eng": "1671", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-07-25 21:14:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-07-25 21:14:05", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7566.208000", + "duration_ts": 7566208, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "02:05:11.878000000", + "DURATION-eng": "02:05:11.878000000", + "NUMBER_OF_BYTES": "50302", + "NUMBER_OF_BYTES-eng": "50302", + "NUMBER_OF_FRAMES": "1671", + "NUMBER_OF_FRAMES-eng": "1671", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-07-25 21:14:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-07-25 21:14:05", + "language": "pol" + }, + "time_base": "1/1000" + } + ] + }, + "Iron Man 3 (2013)/Iron.Man.3.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2140639", + "duration": "7832.938333", + "filename": "Iron Man 3 (2013)/Iron.Man.3.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2095937578", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-08-20T05:02:57.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2042773", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.866708", + "duration_ts": 187988801, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "187801", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-08-20T05:02:57.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93772", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.938667", + "duration_ts": 375981056, + "index": 1, + "max_bit_rate": "104016", + "nb_frames": "367169", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-08-20T05:03:20.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Peanut Butter Falcon (2019)/23ef083b280240f791dc285112e97f8c.mkv": { + "format": { + "bit_rate": "11295670", + "duration": "5817.024000", + "filename": "The Peanut Butter Falcon (2019)/23ef083b280240f791dc285112e97f8c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8213398435", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-11-01T16:12:43.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9784307", + "DURATION-eng": "01:36:56.978000000", + "NUMBER_OF_BYTES-eng": "7114387694", + "NUMBER_OF_FRAMES-eng": "139468", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-11-01 16:12:43", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1509000", + "DURATION-eng": "01:36:57.024000000", + "NUMBER_OF_BYTES-eng": "1097236152", + "NUMBER_OF_FRAMES-eng": "545346", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-11-01 16:12:43", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Fletch (1985)/911de9bd83a3456aa96bc47861007f39.mkv": { + "format": { + "bit_rate": "6209205", + "duration": "5893.430000", + "filename": "Fletch (1985)/911de9bd83a3456aa96bc47861007f39.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4574190047", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-03-12T00:14:16Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5759191", + "DURATION-eng": "01:38:13.430000000", + "NUMBER_OF_BYTES-eng": "4242674007", + "NUMBER_OF_FRAMES-eng": "141301", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-12 21:22:02" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:38:13.408000000", + "NUMBER_OF_BYTES-eng": "330030848", + "NUMBER_OF_FRAMES-eng": "184169", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-12 21:22:02", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5893.430000", + "duration_ts": 5893430, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "82", + "DURATION-eng": "01:32:53.526000000", + "NUMBER_OF_BYTES-eng": "57337", + "NUMBER_OF_FRAMES-eng": "1722", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-12 21:22:02", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Adventures Of Tintin (2011)/The.Adventures.of.Tintin.2011.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2000692", + "duration": "6411.903333", + "filename": "The Adventures Of Tintin (2011)/The.Adventures.of.Tintin.2011.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1603530520", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-02-23T10:12:49.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1933485", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6411.822083", + "duration_ts": 615534920, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "153730", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-02-23T10:12:49.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "64000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6411.904000", + "duration_ts": 153885696, + "index": 1, + "max_bit_rate": "75008", + "nb_frames": "150279", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-02-23T10:17:30.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "The Legend Of Tarzan (2016)/The.Legend.of.Tarzan.2016.720p.BluRay.x264.AC3-FuzerHD.mkv": { + "format": { + "bit_rate": "7019703", + "duration": "6598.931000", + "filename": "The Legend Of Tarzan (2016)/The.Legend.of.Tarzan.2016.720p.BluRay.x264.AC3-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5790317758", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-09-25T08:00:46Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Thomas Crown Affair (1999)/The.Thomas.Crown.Affair.1999.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "6483599", + "duration": "6797.166000", + "filename": "The Thomas Crown Affair (1999)/The.Thomas.Crown.Affair.1999.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5508762870", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "300:127", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "255:254", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:53:17.166000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:53:17.162000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Spider-Man Far From Home (2019)/e97b9828646640d3948945a431b8682c.mkv": { + "format": { + "bit_rate": "7947429", + "duration": "7761.984000", + "filename": "Spider-Man Far From Home (2019)/e97b9828646640d3948945a431b8682c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "7710977593", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-17T07:09:40.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7305158", + "DURATION-eng": "02:09:21.963000000", + "NUMBER_OF_BYTES-eng": "7087796046", + "NUMBER_OF_FRAMES-eng": "186101", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-17 07:09:40" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:09:21.984000000", + "NUMBER_OF_BYTES-eng": "620958720", + "NUMBER_OF_FRAMES-eng": "242562", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-17 07:09:40", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7761.984000", + "duration_ts": 7761984, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "65", + "DURATION-eng": "02:07:43.289000000", + "NUMBER_OF_BYTES-eng": "62842", + "NUMBER_OF_FRAMES-eng": "2073", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-17 07:09:40", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7761.984000", + "duration_ts": 7761984, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "70", + "DURATION-eng": "02:08:09.949000000", + "NUMBER_OF_BYTES-eng": "67705", + "NUMBER_OF_FRAMES-eng": "2418", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-17 07:09:40", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Motorcycle Diaries/Motorcycle Diaries.avi": { + "format": { + "bit_rate": "852679", + "duration": "6904.480000", + "filename": "Motorcycle Diaries/Motorcycle Diaries.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735913984", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "730971", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 560, + "display_aspect_ratio": "35:18", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6904.480000", + "duration_ts": 172612, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "172612", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 560 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "287686", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Hateful Eight (2015)/The.Hateful.Eight.2015.1080p.BluRay.H264.AAC-RARBG.mp4": { + "format": { + "bit_rate": "2730683", + "duration": "10064.715000", + "filename": "The Hateful Eight (2015)/The.Hateful.Eight.2015.1080p.BluRay.H264.AAC-RARBG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3435443870", + "start_time": "0.000000", + "tags": { + "comment": "The.Hateful.Eight.2015.1080p.BluRay.H264.AAC-RARBG", + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-03-05T05:37:16.000000Z", + "encoder": "Lavf56.40.101", + "major_brand": "isom", + "minor_version": "512", + "title": "The.Hateful.Eight.2015.1080p.BluRay.H264.AAC-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2499682", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 704, + "coded_width": 1920, + "display_aspect_ratio": "30:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10064.647981", + "duration_ts": 120655000, + "has_b_frames": 2, + "height": 704, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "241310", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-05T05:37:16.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/11988", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "223999", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10064.715000", + "duration_ts": 483106320, + "index": 1, + "max_bit_rate": "224000", + "nb_frames": "471782", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-05T05:37:16.000000Z", + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "American Splendor (2003)/American Splendor.avi": { + "format": { + "bit_rate": "967483", + "duration": "6068.735402", + "filename": "American Splendor (2003)/American Splendor.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733925376", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "826068", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 512, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6068.735402", + "duration_ts": 145504, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "145504", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6068.664000", + "duration_ts": 252861, + "index": 1, + "nb_frames": "252861", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Martian (2015)/The Martian (2015).mkv": { + "format": { + "bit_rate": "3785752", + "duration": "8497.578000", + "filename": "The Martian (2015)/The Martian (2015).mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4021215937", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9538971", + "BPS-eng": "9538971", + "DURATION": "02:21:37.544000000", + "DURATION-eng": "02:21:37.545000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "10132229714", + "NUMBER_OF_BYTES-eng": "10132229714", + "NUMBER_OF_FRAMES": "203737", + "NUMBER_OF_FRAMES-eng": "203737", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-30 16:09:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-30 16:09:20", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "02:21:37.578000000", + "DURATION-eng": "02:21:37.579000000", + "NUMBER_OF_BYTES": "1602855776", + "NUMBER_OF_BYTES-eng": "1602855776", + "NUMBER_OF_FRAMES": "796648", + "NUMBER_OF_FRAMES-eng": "796648", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-30 16:09:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-30 16:09:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8497.578000", + "duration_ts": 8497578, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "91", + "BPS-eng": "91", + "DURATION": "01:21:29.636000000", + "DURATION-eng": "00:00:47.714000000", + "NUMBER_OF_BYTES": "548", + "NUMBER_OF_BYTES-eng": "548", + "NUMBER_OF_FRAMES": "12", + "NUMBER_OF_FRAMES-eng": "12", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-30 16:09:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-30 16:09:20", + "language": "eng", + "title": "English-Forced" + }, + "time_base": "1/1000" + } + ] + }, + "Micmacs (2009)/Micmacs 2009 720p BRRip x264 (mkv) [Torrent-Force].mkv": { + "format": { + "bit_rate": "4032772", + "duration": "6261.269000", + "filename": "Micmacs (2009)/Micmacs 2009 720p BRRip x264 (mkv) [Torrent-Force].mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3156284352", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-01-14T02:06:36.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "AVC MPEG4 Video" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "AAC Stereo Audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "AC3 5.1 Audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6261.269000", + "duration_ts": 6261269, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English Subtitle PGS to srt edited by GREY-SHADOW" + }, + "time_base": "1/1000" + } + ] + }, + "Austin Powers The Spy Who Shagged Me (1999)/Austin.Powers.The.Spy.Who.Shagged.Me.1999.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "9852512", + "duration": "5708.776000", + "filename": "Austin Powers The Spy Who Shagged Me (1999)/Austin.Powers.The.Spy.Who.Shagged.Me.1999.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7030723039", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-24T10:50:13.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8158087", + "BPS-eng": "8158087", + "DURATION": "01:35:02.739000000", + "DURATION-eng": "01:35:02.739000000", + "NUMBER_OF_BYTES": "5815430200", + "NUMBER_OF_BYTES-eng": "5815430200", + "NUMBER_OF_FRAMES": "136729", + "NUMBER_OF_FRAMES-eng": "136729", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-24 10:50:13", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-24 10:50:13", + "language": "eng", + "title": "PRoDJi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509749", + "BPS-eng": "1509749", + "DURATION": "01:35:02.742000000", + "DURATION-eng": "01:35:02.742000000", + "NUMBER_OF_BYTES": "1076214216", + "NUMBER_OF_BYTES-eng": "1076214216", + "NUMBER_OF_FRAMES": "534632", + "NUMBER_OF_FRAMES-eng": "534632", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-24 10:50:13", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-24 10:50:13", + "language": "tur", + "title": "English DTS@1510Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 1800, + "start_time": "1.800000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "01:35:06.976000000", + "DURATION-eng": "01:35:06.976000000", + "NUMBER_OF_BYTES": "136967424", + "NUMBER_OF_BYTES-eng": "136967424", + "NUMBER_OF_FRAMES": "178343", + "NUMBER_OF_FRAMES-eng": "178343", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-24 10:50:13", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-24 10:50:13", + "language": "tur", + "title": "192Kbps 2 chnls AC3 Turkish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5708.776000", + "duration_ts": 5708776, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "58", + "BPS-eng": "58", + "DURATION": "01:33:44.383000000", + "DURATION-eng": "01:33:44.383000000", + "NUMBER_OF_BYTES": "41059", + "NUMBER_OF_BYTES-eng": "41059", + "NUMBER_OF_FRAMES": "1329", + "NUMBER_OF_FRAMES-eng": "1329", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-24 10:50:13", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-24 10:50:13", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5708.776000", + "duration_ts": 5708776, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "61", + "BPS-eng": "61", + "DURATION": "01:34:20.700000000", + "DURATION-eng": "01:34:20.700000000", + "NUMBER_OF_BYTES": "43841", + "NUMBER_OF_BYTES-eng": "43841", + "NUMBER_OF_FRAMES": "1459", + "NUMBER_OF_FRAMES-eng": "1459", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-24 10:50:13", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-24 10:50:13", + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Role Models (2008)/Role.Models[2008][Unrated.Edition]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "969504", + "duration": "6069.319319", + "filename": "Role Models (2008)/Role.Models[2008][Unrated.Edition]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735528960", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "848195", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 328, + "coded_width": 624, + "display_aspect_ratio": "78:41", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6069.319319", + "duration_ts": 145518, + "has_b_frames": 1, + "height": 328, + "index": 0, + "level": 5, + "nb_frames": "145518", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "252888", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Blue State/Blue State.mp4": { + "format": { + "bit_rate": "1131506", + "duration": "5550.753492", + "filename": "Blue State/Blue State.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "785089131", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isom", + "creation_time": "2008-04-12T07:03:31.000000Z", + "encoder": "HandBrake 0.9.2 2008022300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "838435500/34969747", + "bit_rate": "1000062", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "34969747/1676871000", + "codec_type": "video", + "coded_height": 468, + "coded_width": 718, + "display_aspect_ratio": "5744:3159", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5550.753492", + "duration_ts": 244788229, + "has_b_frames": 1, + "height": 468, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "133085", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2008-04-12T07:03:31.000000Z", + "language": "eng" + }, + "time_base": "1/44100", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127159", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5550.660499", + "duration_ts": 244784128, + "index": 1, + "max_bit_rate": "190472", + "nb_frames": "239047", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2008-04-12T07:03:31.000000Z", + "language": "eng" + }, + "time_base": "1/44100" + } + ] + }, + "The 40 Year Old Virgin (2005)/The.40.Year.Old.Virgin.Unrated.2005.720p.BluRay.DTS.x264-CtrlHD.mkv": { + "format": { + "bit_rate": "7063614", + "duration": "7947.520000", + "filename": "The 40 Year Old Virgin (2005)/The.40.Year.Old.Virgin.Unrated.2005.720p.BluRay.DTS.x264-CtrlHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "7017277209", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-12-05T06:03:20.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Run Lola Run/Run Lola Run.avi": { + "format": { + "bit_rate": "1221891", + "duration": "4807.640974", + "filename": "Run Lola Run/Run Lola Run.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734302208", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1042382", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 576, + "display_aspect_ratio": "36:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4807.640974", + "duration_ts": 115268, + "has_b_frames": 0, + "height": 304, + "index": 0, + "level": 3, + "nb_frames": "115268", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "166800", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4807.584000", + "duration_ts": 200316, + "index": 1, + "nb_frames": "200316", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Time Machine (1960)/The Time Machine.avi": { + "format": { + "bit_rate": "1001515", + "duration": "6158.895236", + "filename": "The Time Machine (1960)/The Time Machine.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "771028992", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "250000/10427", + "bit_rate": "864436", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "10427/250000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 688, + "display_aspect_ratio": "43:25", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6158.895236", + "duration_ts": 147667, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "147667", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "250000/10427", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "10427/250000", + "width": 688 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "235745", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "139/5321" + } + ] + }, + "Six Degrees Of Separation (1993)/Six Degrees of Separation (1993).avi": { + "format": { + "bit_rate": "890843", + "duration": "6592.721208", + "filename": "Six Degrees Of Separation (1993)/Six Degrees of Separation (1993).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734135484", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "500000/16683", + "bit_rate": "771007", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "16683/500000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6592.721208", + "duration_ts": 197588, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": -99, + "nb_frames": "197588", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "16683/500000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "65924", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Chappie (2015)/Chappie.2015.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2193806", + "duration": "7219.285000", + "filename": "Chappie (2015)/Chappie.2015.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1979714349", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-05-29T04:20:41.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2096049", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7219.128583", + "duration_ts": 173259086, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "173086", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-05-29T04:20:41.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93673", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7219.285333", + "duration_ts": 346525696, + "index": 1, + "max_bit_rate": "105920", + "nb_frames": "338404", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-05-29T04:20:56.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Notebook/The Notebook.mkv": { + "format": { + "bit_rate": "2255072", + "duration": "7427.670000", + "filename": "The Notebook/The Notebook.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2093741400", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 362, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "66960:28417", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 362, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "186:157", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Ghost In The Shell Arise Border 4 Ghost Stands Alone (2014)/Ghost.in.the.Shell.Arise.Border.4-Ghost.Stands.Alone.2014.720p.BluRay.DD5.1.x264-VietHD.mkv": { + "format": { + "bit_rate": "8899904", + "duration": "3537.536000", + "filename": "Ghost In The Shell Arise Border 4 Ghost Stands Alone (2014)/Ghost.in.the.Shell.Arise.Border.4-Ghost.Stands.Alone.2014.720p.BluRay.DD5.1.x264-VietHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3935466445", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-09-15T01:04:28.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8257949", + "BPS-eng": "8257949", + "DURATION": "00:58:57.493000000", + "DURATION-eng": "00:58:57.493000000", + "NUMBER_OF_BYTES": "3651554968", + "NUMBER_OF_BYTES-eng": "3651554968", + "NUMBER_OF_FRAMES": "84815", + "NUMBER_OF_FRAMES-eng": "84815", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-09-15 01:04:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-09-15 01:04:28", + "language": "jpn", + "title": "Kakashi@VietHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "00:58:57.536000000", + "DURATION-eng": "00:58:57.536000000", + "NUMBER_OF_BYTES": "283002880", + "NUMBER_OF_BYTES-eng": "283002880", + "NUMBER_OF_FRAMES": "110548", + "NUMBER_OF_FRAMES-eng": "110548", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-09-15 01:04:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-09-15 01:04:28", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3537.536000", + "duration_ts": 3537536, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "70", + "BPS-eng": "70", + "DURATION": "00:53:38.382000000", + "DURATION-eng": "00:53:38.382000000", + "NUMBER_OF_BYTES": "28385", + "NUMBER_OF_BYTES-eng": "28385", + "NUMBER_OF_FRAMES": "630", + "NUMBER_OF_FRAMES-eng": "630", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-09-15 01:04:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-09-15 01:04:28", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Lifeforce (1985)/Lifeforce 1985 HDTV 720p x264{SiMbA}.mp4": { + "format": { + "bit_rate": "841679", + "duration": "6971.413333", + "filename": "Lifeforce (1985)/Lifeforce 1985 HDTV 720p x264{SiMbA}.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733461884", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-01-26T02:20:54.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "741908", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6971.339375", + "duration_ts": 167312145, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "167145", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-01-26T02:20:54.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (internal rev. 5)", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95988", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6971.413333", + "duration_ts": 334627840, + "index": 1, + "max_bit_rate": "120024", + "nb_frames": "326785", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-01-26T02:22:50.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Sky Captain and the World of Tomorrow (2004)/Sky.Captain.and.the.World.of.Tomarrow.2004.720p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "918494", + "duration": "6396.458333", + "filename": "Sky Captain and the World of Tomorrow (2004)/Sky.Captain.and.the.World.of.Tomarrow.2004.720p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734388657", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-09-22T09:31:30.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "822601", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6396.390000", + "duration_ts": 614053440, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "153360", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 12012, + "start_time": "0.125125", + "tags": { + "creation_time": "2012-09-22T09:31:30.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "91999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6396.458667", + "duration_ts": 307030016, + "index": 1, + "max_bit_rate": "102120", + "nb_frames": "299834", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-09-22T09:32:04.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "A Good Old Fashioned Orgy (2011)/30513df1425f4434bcf907e583749728.mkv": { + "format": { + "bit_rate": "9835831", + "duration": "5724.093000", + "filename": "A Good Old Fashioned Orgy (2011)/30513df1425f4434bcf907e583749728.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7037651964", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.4 (date: 2011 mar 29)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Kick-Ass 2 (2013)/Kick-Ass.2.2013.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1091590", + "duration": "6180.160000", + "filename": "Kick-Ass 2 (2013)/Kick-Ass.2.2013.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "843275479", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-11-30T00:48:48.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "993687", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6180.132292", + "duration_ts": 148323175, + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "148175", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-11-30T00:48:48.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93783", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6180.160000", + "duration_ts": 296647680, + "index": 1, + "max_bit_rate": "101200", + "nb_frames": "289695", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-30T00:48:52.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Thor Ragnarok (2017)/Thor Ragnarok (2017) x264 1080p (WEB-DL) DD5.1 NLSubs.mkv": { + "format": { + "bit_rate": "5646627", + "duration": "7844.086000", + "filename": "Thor Ragnarok (2017)/Thor Ragnarok (2017) x264 1080p (WEB-DL) DD5.1 NLSubs.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5536579044", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-01-21T02:11:14.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7844.086000", + "duration_ts": 7844086, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "QoQ-Team" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7844.086000", + "duration_ts": 7844086, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Fisher King (1991)/fc8cef6e2fba44c184e2a9571e114ddb.mkv": { + "format": { + "bit_rate": "5054499", + "duration": "8271.284000", + "filename": "The Fisher King (1991)/fc8cef6e2fba44c184e2a9571e114ddb.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5225900035", + "start_time": "0.000000", + "tags": { + "Writing frontend": "StaxRip v1.7.0.6", + "creation_time": "2019-01-02T13:52:32.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "THE FISHER KING BD" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4673945", + "DURATION-eng": "02:17:51.263000000", + "NUMBER_OF_BYTES-eng": "4832428582", + "NUMBER_OF_FRAMES-eng": "198312", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 13:52:32" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "301902", + "DURATION-eng": "02:17:51.253000000", + "NUMBER_OF_BYTES-eng": "312138589", + "NUMBER_OF_FRAMES-eng": "387715", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 13:52:32", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS-eng": "65334", + "DURATION-eng": "02:17:51.275000000", + "NUMBER_OF_BYTES-eng": "67549955", + "NUMBER_OF_FRAMES-eng": "387716", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 13:52:32", + "language": "eng", + "title": "Commentary by Terry Gilliam" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8271.284000", + "duration_ts": 8271284, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59456", + "DURATION-eng": "02:16:47.408000000", + "NUMBER_OF_BYTES-eng": "60997521", + "NUMBER_OF_FRAMES-eng": "4290", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-02 13:52:32", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Full Metal Jacket (1987)/Full Metal Jacket.mp4": { + "format": { + "bit_rate": "2581935", + "duration": "6990.933333", + "filename": "Full Metal Jacket (1987)/Full Metal Jacket.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2256267175", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2009-07-16T00:30:23.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "2274833", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.870046", + "duration_ts": 467640270, + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "167613", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2790, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-07-15T04:37:51.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "303429", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.933333", + "duration_ts": 335564800, + "index": 1, + "max_bit_rate": "383472", + "nb_frames": "327700", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-07-16T00:32:58.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Big Year (2011)/The.Big.Year.2011.EXTENDED.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "881830", + "duration": "6189.353333", + "filename": "The Big Year (2011)/The.Big.Year.2011.EXTENDED.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "682245092", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-01-27T04:41:45.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "814570", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6189.224708", + "duration_ts": 594165572, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "148393", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-01-27T04:41:45.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "63999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6189.354667", + "duration_ts": 148544512, + "index": 1, + "max_bit_rate": "71616", + "nb_frames": "145063", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-01-27T05:00:29.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "Mary Poppins Returns (2018)/2d81c1b1021545d1bee89c094c9b0c61.mkv": { + "format": { + "bit_rate": "7196023", + "duration": "7829.206000", + "filename": "Mary Poppins Returns (2018)/2d81c1b1021545d1bee89c094c9b0c61.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7042394199", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-08T00:52:24.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5684698", + "BPS-eng": "5684698", + "DURATION": "02:10:29.167000000", + "DURATION-eng": "02:10:29.167000000", + "NUMBER_OF_BYTES": "5563306426", + "NUMBER_OF_BYTES-eng": "5563306426", + "NUMBER_OF_FRAMES": "187712", + "NUMBER_OF_FRAMES-eng": "187712", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-03-08 00:52:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-08 00:52:24", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "02:10:29.206000000", + "DURATION-eng": "02:10:29.206000000", + "NUMBER_OF_BYTES": "1476783856", + "NUMBER_OF_BYTES-eng": "1476783856", + "NUMBER_OF_FRAMES": "733988", + "NUMBER_OF_FRAMES-eng": "733988", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-03-08 00:52:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-08 00:52:24", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Demolition Man (1993)/Demolition.Man.BluRay.1080p.x264.5.1.Judas.mp4": { + "format": { + "bit_rate": "2538983", + "duration": "6903.040000", + "filename": "Demolition Man (1993)/Demolition.Man.BluRay.1080p.x264.5.1.Judas.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2190838124", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-16T09:29:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2246555", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6902.895000", + "duration_ts": 165669480, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "165504", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-16T09:29:15.000000Z", + "handler_name": "Video", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "81118", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6903.040000", + "duration_ts": 165672960, + "index": 1, + "max_bit_rate": "118816", + "nb_frames": "161790", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-16T09:29:25.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "207152", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6903.040000", + "duration_ts": 165672960, + "index": 2, + "max_bit_rate": "261800", + "nb_frames": "161790", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-16T09:29:29.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + } + ] + }, + "Beneath The Planet of the Apes (1970)/Beneath.the.Planet.of.the.Apes.1970.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1969503", + "duration": "5682.050000", + "filename": "Beneath The Planet of the Apes (1970)/Beneath.the.Planet.of.the.Apes.1970.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1398851943", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-01T16:55:54.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1875007", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5682.051375", + "duration_ts": 136369233, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "136233", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-03-01T16:55:54.000000Z", + "handler_name": "the.Planet.of.the.Apes.1970.1080p.BrRip.x264.BOKUTOX.YIFY.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5582.314667", + "duration_ts": 267951104, + "index": 1, + "max_bit_rate": "97800", + "nb_frames": "261671", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-01T04:46:12.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Pirates of the Caribbean II - Dead Man's Chest/Pirates of the Caribbean - Dead Man's Chest.m4v": { + "format": { + "bit_rate": "1942326", + "duration": "9042.016000", + "filename": "Pirates of the Caribbean II - Dead Man's Chest/Pirates of the Caribbean - Dead Man's Chest.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2195318097", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-08-12T02:48:31.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2050702095/85525933", + "bit_rate": "1357009", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "44336957/2126182958", + "codec_type": "video", + "coded_height": 352, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "843:352", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9041.959056", + "duration_ts": 813776315, + "has_b_frames": 1, + "height": 352, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "216804", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "240/1", + "refs": 1, + "sample_aspect_ratio": "281:240", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-08-12T02:48:31.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131951", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9042.005333", + "duration_ts": 434016256, + "index": 1, + "max_bit_rate": "205824", + "nb_frames": "423844", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-08-12T02:48:31.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "9042.016000", + "duration_ts": 434016768, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "282563", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-08-12T02:48:31.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Invention of Lying (2009)/the.invention.of.lying.2009.merry.xmas.bdrip.xvid-imbt.avi": { + "format": { + "bit_rate": "979837", + "duration": "5982.960000", + "filename": "The Invention of Lying (2009)/the.invention.of.lying.2009.merry.xmas.bdrip.xvid-imbt.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732790784", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "5000000/208541", + "bit_rate": "838441", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "208541/5000000", + "codec_type": "video", + "coded_height": 320, + "coded_width": 592, + "display_aspect_ratio": "37:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5982.957874", + "duration_ts": 143448, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "143448", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "5000000/208541", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "208541/5000000", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128648", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5982.960000", + "duration_ts": 249290, + "index": 1, + "nb_frames": "249290", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Futurama - Benders Big Score/Futurama - Benders Big Score.mkv": { + "format": { + "bit_rate": "2253274", + "duration": "5329.920000", + "filename": "Futurama - Benders Big Score/Futurama - Benders Big Score.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1501221486", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "279:157", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "186:157", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "War of the Worlds/War of the Worlds.avi": { + "format": { + "bit_rate": "2341942", + "duration": "6993.410077", + "filename": "War of the Worlds/War of the Worlds.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2047270912", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2214040", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6993.410077", + "duration_ts": 167674, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "167674", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115216", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6992.880000", + "duration_ts": 291370, + "index": 1, + "nb_frames": "291370", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Enemy Of The State (1998)/Enemy Of The State.avi": { + "format": { + "bit_rate": "1466106", + "duration": "8017.160000", + "filename": "Enemy Of The State (1998)/Enemy Of The State.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1469251584", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1074837", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8017.160000", + "duration_ts": 200429, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "200429", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "384821760", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Napoleon Dynamite/Napoleon Dynamite.m4v": { + "format": { + "bit_rate": "1556852", + "duration": "5689.376000", + "filename": "Napoleon Dynamite/Napoleon Dynamite.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1107189915", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T05:54:16.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "24069000/1004003", + "bit_rate": "971998", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1004003/48138000", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "107:58", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5689.350333", + "duration_ts": 512041530, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "136391", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "107:90", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T05:54:16.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131821", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5689.365333", + "duration_ts": 273089536, + "index": 1, + "max_bit_rate": "218200", + "nb_frames": "266689", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T05:54:16.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "5689.376000", + "duration_ts": 273090048, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "177793", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T05:54:16.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Hugo (2011)/Hugo.2011.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "6192059", + "duration": "7580.990000", + "filename": "Hugo (2011)/Hugo.2011.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5867742364", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.4 (date: 2011 mar 29)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7580.990000", + "duration_ts": 7580990, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Chasing Amy/Chasing Amy.m4v": { + "format": { + "bit_rate": "2151324", + "duration": "6818.080000", + "filename": "Chasing Amy/Chasing Amy.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1833488181", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T02:33:12.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2077704829/86571873", + "bit_rate": "1598070", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "27587444/1324184487", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "841:480", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6818.024367", + "duration_ts": 613622193, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "163631", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "841:720", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T02:33:12.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164308", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6818.069333", + "duration_ts": 327267328, + "index": 1, + "max_bit_rate": "251072", + "nb_frames": "319597", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T02:33:12.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6818.080000", + "duration_ts": 327267840, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "213065", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T02:33:12.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Cars/Cars.avi": { + "format": { + "bit_rate": "842533", + "duration": "6990.448782", + "filename": "Cars/Cars.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736210944", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "721232", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 238, + "coded_width": 576, + "display_aspect_ratio": "288:119", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6990.448782", + "duration_ts": 167603, + "has_b_frames": 1, + "height": 238, + "index": 0, + "level": 5, + "nb_frames": "167603", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "291254", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Wackness (2008)/The.Wackness[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "990027", + "duration": "5942.609276", + "filename": "The Wackness (2008)/The.Wackness[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735418368", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "852725", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 276, + "coded_width": 660, + "display_aspect_ratio": "55:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5942.609276", + "duration_ts": 142480, + "has_b_frames": 1, + "height": 276, + "index": 0, + "level": 5, + "nb_frames": "142480", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 660 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "247598", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Alita Battle Angel (2019)/0d4ff971639942888f9ac6a35842aef3.mkv": { + "format": { + "bit_rate": "4922997", + "duration": "7329.902000", + "filename": "Alita Battle Angel (2019)/0d4ff971639942888f9ac6a35842aef3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "4510636058", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-07-08T15:28:40.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0", + "title": "Alita.Battle.Angel.2019.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4537444", + "DURATION-eng": "02:02:09.902000000", + "NUMBER_OF_BYTES-eng": "4157377768", + "NUMBER_OF_FRAMES-eng": "175743", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-08 15:28:40", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:01:58.016000000", + "NUMBER_OF_BYTES-eng": "351264768", + "NUMBER_OF_FRAMES-eng": "228688", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-08 15:28:40", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.902000", + "duration_ts": 7329902, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "41", + "DURATION-eng": "01:55:09.836000000", + "NUMBER_OF_BYTES-eng": "35706", + "NUMBER_OF_FRAMES-eng": "1347", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-08 15:28:40", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.902000", + "duration_ts": 7329902, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "01:55:44.405000000", + "NUMBER_OF_BYTES-eng": "40309", + "NUMBER_OF_FRAMES-eng": "1588", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-08 15:28:40", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.902000", + "duration_ts": 659691180, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.902000", + "duration_ts": 659691180, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.902000", + "duration_ts": 659691180, + "has_b_frames": 0, + "height": 600, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.902000", + "duration_ts": 659691180, + "has_b_frames": 0, + "height": 176, + "index": 7, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + } + ] + }, + "Lincoln (2012)/Lincoln.2012.mkv": { + "format": { + "bit_rate": "3682716", + "duration": "8997.056000", + "filename": "Lincoln (2012)/Lincoln.2012.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "4141701053", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-01-07T11:17:15.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "Lincoln 2012 MULTi 1080p BluRay HDLight AC3 x264 Zone80" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2399929", + "BPS-eng": "2399929", + "DURATION": "02:29:56.988000000", + "DURATION-eng": "02:29:56.988000000", + "NUMBER_OF_BYTES": "2699016949", + "NUMBER_OF_BYTES-eng": "2699016949", + "NUMBER_OF_FRAMES": "215712", + "NUMBER_OF_FRAMES-eng": "215712", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "02:29:57.024000000", + "DURATION-eng": "02:29:57.024000000", + "NUMBER_OF_BYTES": "503833344", + "NUMBER_OF_BYTES-eng": "503833344", + "NUMBER_OF_FRAMES": "281157", + "NUMBER_OF_FRAMES-eng": "281157", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "eng", + "title": "Anglais [VOA] AC3 5.1 6 Canaux 448kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "02:29:57.056000000", + "DURATION-eng": "02:29:57.056000000", + "NUMBER_OF_BYTES": "503835136", + "NUMBER_OF_BYTES-eng": "503835136", + "NUMBER_OF_FRAMES": "281158", + "NUMBER_OF_FRAMES-eng": "281158", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "fre", + "title": "Français [VFI] AC3 5.1 6 Canaux 448kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8997.056000", + "duration_ts": 8997056, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "02:19:04.126000000", + "DURATION-eng": "02:19:04.126000000", + "NUMBER_OF_BYTES": "83717", + "NUMBER_OF_BYTES-eng": "83717", + "NUMBER_OF_FRAMES": "2281", + "NUMBER_OF_FRAMES-eng": "2281", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "fre", + "title": "Français Sous-titre Complet" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8997.056000", + "duration_ts": 8997056, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "02:06:51.311000000", + "DURATION-eng": "02:06:51.311000000", + "NUMBER_OF_BYTES": "1012", + "NUMBER_OF_BYTES-eng": "1012", + "NUMBER_OF_FRAMES": "30", + "NUMBER_OF_FRAMES-eng": "30", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "fre", + "title": "Français Sous-titre Forcé" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8997.056000", + "duration_ts": 8997056, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "02:19:00.665000000", + "DURATION-eng": "02:19:00.665000000", + "NUMBER_OF_BYTES": "77318", + "NUMBER_OF_BYTES-eng": "77318", + "NUMBER_OF_FRAMES": "2365", + "NUMBER_OF_FRAMES-eng": "2365", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "eng", + "title": "Anglais Sous-titre Complet" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 6, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "02:29:57.056000000", + "DURATION-eng": "02:29:57.056000000", + "NUMBER_OF_BYTES": "215929344", + "NUMBER_OF_BYTES-eng": "215929344", + "NUMBER_OF_FRAMES": "281158", + "NUMBER_OF_FRAMES-eng": "281158", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "eng", + "title": "Anglais [VOA] AC3 Stéréo 2 Canaux 192kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 7, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "02:29:57.056000000", + "DURATION-eng": "02:29:57.056000000", + "NUMBER_OF_BYTES": "215929344", + "NUMBER_OF_BYTES-eng": "215929344", + "NUMBER_OF_FRAMES": "281158", + "NUMBER_OF_FRAMES-eng": "281158", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 32bit built on Oct 22 2014 18:44:01", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-07 11:17:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-07 11:17:15", + "language": "fre", + "title": "Français [VFI] AC3 Stéréo 2 Canaux 192kbps" + }, + "time_base": "1/1000" + } + ] + }, + "UHF/UHF [XviD].avi": { + "format": { + "bit_rate": "1347547", + "duration": "5828.119786", + "filename": "UHF/UHF [XviD].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "981708800", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2439/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1177759", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5828.119786", + "duration_ts": 139735, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "139735", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "157040", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5828.112000", + "duration_ts": 242838, + "index": 1, + "nb_frames": "242838", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Voyage Of Time (2016)/Voyage.of.Time.2016.DOCU.720p.BluRay.x264-NODLABS.mkv": { + "format": { + "bit_rate": "7029796", + "duration": "5334.006000", + "filename": "Voyage Of Time (2016)/Voyage.of.Time.2016.DOCU.720p.BluRay.x264-NODLABS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4687122375", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5518513", + "BPS-eng": "5518513", + "DURATION": "01:28:53.996000000", + "DURATION-eng": "01:28:53.996000000", + "NUMBER_OF_BYTES": "3679465950", + "NUMBER_OF_BYTES-eng": "3679465950", + "NUMBER_OF_FRAMES": "127888", + "NUMBER_OF_FRAMES-eng": "127888", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:28:54.006000000", + "DURATION-eng": "01:28:54.006000000", + "NUMBER_OF_BYTES": "1006126756", + "NUMBER_OF_BYTES-eng": "1006126756", + "NUMBER_OF_FRAMES": "500063", + "NUMBER_OF_FRAMES-eng": "500063", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Mary And The Witchs Flower (2017)/069eb7c8808d4513abe6ffc65ebfeb37.mkv": { + "format": { + "bit_rate": "3459029", + "duration": "6169.376000", + "filename": "Mary And The Witchs Flower (2017)/069eb7c8808d4513abe6ffc65ebfeb37.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2667507072", + "start_time": "0.005000", + "tags": { + "CREATION_TIME": "2019-01-03T22:34:43Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "2560980", + "BPS-eng": "2560980", + "DURATION": "01:42:49.372000000", + "DURATION-eng": "01:42:49.372000000", + "NUMBER_OF_BYTES": "1974955478", + "NUMBER_OF_BYTES-eng": "1974955478", + "NUMBER_OF_FRAMES": "147917", + "NUMBER_OF_FRAMES-eng": "147917", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-03 22:59:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 22:59:46", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:42:48.480000000", + "DURATION-eng": "01:42:48.480000000", + "NUMBER_OF_BYTES": "345434880", + "NUMBER_OF_BYTES-eng": "345434880", + "NUMBER_OF_FRAMES": "192765", + "NUMBER_OF_FRAMES-eng": "192765", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-03 22:59:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 22:59:46", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:42:49.376000000", + "DURATION-eng": "01:42:49.376000000", + "NUMBER_OF_BYTES": "345485056", + "NUMBER_OF_BYTES-eng": "345485056", + "NUMBER_OF_FRAMES": "192793", + "NUMBER_OF_FRAMES-eng": "192793", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-03 22:59:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 22:59:46", + "language": "jpn", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6169.376000", + "duration_ts": 6169376, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "01:37:01.160000000", + "DURATION-eng": "01:37:01.160000000", + "NUMBER_OF_BYTES": "37691", + "NUMBER_OF_BYTES-eng": "37691", + "NUMBER_OF_FRAMES": "1322", + "NUMBER_OF_FRAMES-eng": "1322", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-03 22:59:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 22:59:46", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Dark Tower (2017)/the.dark.tower.2017.1080p.brrip.x264.ac3-evo.mkv": { + "format": { + "bit_rate": "5754458", + "duration": "5684.684000", + "filename": "The Dark Tower (2017)/the.dark.tower.2017.1080p.brrip.x264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4089034908", + "start_time": "0.078000", + "tags": { + "creation_time": "2017-10-07T23:39:15.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Alien Resurrection Special Edition (1997)/Alien.Resurrection.SE.1997.720p.BRrip.x264-NGP.mkv": { + "format": { + "bit_rate": "1377969", + "duration": "6968.691000", + "filename": "Alien Resurrection Special Edition (1997)/Alien.Resurrection.SE.1997.720p.BRrip.x264-NGP.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1200330707", + "start_time": "0.021000", + "tags": { + "CREATION_TIME": "2015-01-03 20:14:48", + "ENCODER": "Lavf56.16.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "1247546", + "BPS-eng": "1247546", + "DURATION": "01:56:08.670000000", + "DURATION-eng": "01:56:08.670000000", + "ENCODER": "Lavc56.16.100 libx264", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "1086717125", + "NUMBER_OF_BYTES-eng": "1086717125", + "NUMBER_OF_FRAMES": "167081", + "NUMBER_OF_FRAMES-eng": "167081", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 32bit built on Dec 12 2014 12:10:09", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 32bit built on Dec 12 2014 12:10:09", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-04 15:16:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-04 15:16:21", + "title": "x264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 21, + "start_time": "0.021000", + "tags": { + "BPS": "128138", + "BPS-eng": "128138", + "DURATION": "01:56:08.682000000", + "DURATION-eng": "01:56:08.682000000", + "ENCODER": "Lavc56.16.100 aac", + "NUMBER_OF_BYTES": "111619500", + "NUMBER_OF_BYTES-eng": "111619500", + "NUMBER_OF_FRAMES": "326657", + "NUMBER_OF_FRAMES-eng": "326657", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 32bit built on Dec 12 2014 12:10:09", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 32bit built on Dec 12 2014 12:10:09", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-04 15:16:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-04 15:16:21", + "language": "eng", + "title": "aac" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6968.691000", + "duration_ts": 6968691, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 21, + "start_time": "0.021000", + "tags": { + "BPS": "33", + "BPS-eng": "33", + "DURATION": "01:51:56.834000000", + "DURATION-eng": "01:51:56.834000000", + "NUMBER_OF_BYTES": "27841", + "NUMBER_OF_BYTES-eng": "27841", + "NUMBER_OF_FRAMES": "904", + "NUMBER_OF_FRAMES-eng": "904", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 32bit built on Dec 12 2014 12:10:09", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 32bit built on Dec 12 2014 12:10:09", + "_STATISTICS_WRITING_DATE_UTC": "2015-01-04 15:16:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-01-04 15:16:21", + "language": "eng", + "title": "Eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Lord Of The Rings 1 - The Fellowship Of The Ring (2001)/The Lord of The Rings 1 - The Fellowship of The Ring (2001) Special Extended 1080p BluRay DTS-HD MA 6.1.mkv": { + "format": { + "bit_rate": "34621007", + "duration": "13692.726000", + "filename": "The Lord Of The Rings 1 - The Fellowship Of The Ring (2001)/The Lord of The Rings 1 - The Fellowship of The Ring (2001) Special Extended 1080p BluRay DTS-HD MA 6.1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "59256996166", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-10T14:38:36.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29868681", + "BPS-eng": "29868681", + "DURATION": "03:48:11.720000000", + "DURATION-eng": "03:48:11.720000000", + "NUMBER_OF_BYTES": "51119202647", + "NUMBER_OF_BYTES-eng": "51119202647", + "NUMBER_OF_FRAMES": "328273", + "NUMBER_OF_FRAMES-eng": "328273", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-10 14:38:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-10 14:38:36" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4742874", + "BPS-eng": "4742874", + "DURATION": "03:48:12.726000000", + "DURATION-eng": "03:48:12.726000000", + "NUMBER_OF_BYTES": "8117859780", + "NUMBER_OF_BYTES-eng": "8117859780", + "NUMBER_OF_FRAMES": "1283693", + "NUMBER_OF_FRAMES-eng": "1283693", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-10 14:38:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-10 14:38:36", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "13692.726000", + "duration_ts": 13692726, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "20777", + "BPS-eng": "20777", + "DURATION": "03:47:34.303000000", + "DURATION-eng": "03:47:34.303000000", + "NUMBER_OF_BYTES": "35462880", + "NUMBER_OF_BYTES-eng": "35462880", + "NUMBER_OF_FRAMES": "2708", + "NUMBER_OF_FRAMES-eng": "2708", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-10 14:38:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-10 14:38:36", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "13692.726000", + "duration_ts": 13692726, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "35", + "BPS-eng": "35", + "DURATION": "03:20:12.800000000", + "DURATION-eng": "03:20:12.800000000", + "NUMBER_OF_BYTES": "53793", + "NUMBER_OF_BYTES-eng": "53793", + "NUMBER_OF_FRAMES": "1352", + "NUMBER_OF_FRAMES-eng": "1352", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-10 14:38:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-10 14:38:36", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Catch-22 (1970)/Catch-22 [1970] -- Part 2.avi": { + "format": { + "bit_rate": "1296720", + "duration": "4063.980647", + "filename": "Catch-22 (1970)/Catch-22 [1970] -- Part 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "658731008", + "start_time": "0.000000", + "tags": { + "ISBJ": "Catch 22", + "artist": "R. Daneel (SChiZO)", + "comment": "", + "copyright": "You're a very weird man, Yossarian.", + "encoder": "Nandub v0.26.1", + "title": "Catch 22" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1109228", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4063.980647", + "duration_ts": 97438, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "97438", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "176632", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4063.944000", + "duration_ts": 169331, + "index": 1, + "nb_frames": "169331", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Alien Covenant (2017)/alien.covenant.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4441190", + "duration": "7338.212000", + "filename": "Alien Covenant (2017)/alien.covenant.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4073799249", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-01T06:03:19.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Spooky Tale Of Captain Underpants Hack-A-Ween (2019)/d134cc9120414b7cbf779dc5c8187ce1.mkv": { + "format": { + "bit_rate": "6066243", + "duration": "2769.824000", + "filename": "The Spooky Tale Of Captain Underpants Hack-A-Ween (2019)/d134cc9120414b7cbf779dc5c8187ce1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "2100303205", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-10-11T10:04:45.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4783772", + "DURATION-eng": "00:46:09.767000000", + "NUMBER_OF_BYTES-eng": "1656241760", + "NUMBER_OF_FRAMES-eng": "66408", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-11 10:04:45" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "00:46:09.824000000", + "NUMBER_OF_BYTES-eng": "221585920", + "NUMBER_OF_FRAMES-eng": "86557", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-11 10:04:45", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "00:46:09.824000000", + "NUMBER_OF_BYTES-eng": "221585920", + "NUMBER_OF_FRAMES-eng": "86557", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-11 10:04:45", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2769.824000", + "duration_ts": 2769824, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "0", + "DURATION-eng": "00:45:07.621000000", + "NUMBER_OF_BYTES-eng": "293", + "NUMBER_OF_FRAMES-eng": "18", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-11 10:04:45", + "language": "fre", + "title": "French Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2769.824000", + "duration_ts": 2769824, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "86", + "DURATION-eng": "00:45:07.621000000", + "NUMBER_OF_BYTES-eng": "29332", + "NUMBER_OF_FRAMES-eng": "830", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-11 10:04:45", + "language": "fre", + "title": "French Full" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2769.824000", + "duration_ts": 2769824, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "115", + "DURATION-eng": "00:44:35.965000000", + "NUMBER_OF_BYTES-eng": "38644", + "NUMBER_OF_FRAMES-eng": "1053", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-10-11 10:04:45", + "language": "eng", + "title": "English Full" + }, + "time_base": "1/1000" + } + ] + }, + "Girl Rising (2013)/Girl.Rising.2013.DOCU.720p.WEB.x264-ASSOCiATE.mkv": { + "format": { + "bit_rate": "2210090", + "duration": "6100.397000", + "filename": "Girl Rising (2013)/Girl.Rising.2013.DOCU.720p.WEB.x264-ASSOCiATE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1685303491", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-06-05T12:41:23.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 714, + "coded_width": 1280, + "display_aspect_ratio": "640:357", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 714, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "2079941", + "BPS-eng": "2079941", + "DURATION": "01:41:40.304000000", + "DURATION-eng": "01:41:40.304000000", + "NUMBER_OF_BYTES": "1586034571", + "NUMBER_OF_BYTES-eng": "1586034571", + "NUMBER_OF_FRAMES": "146261", + "NUMBER_OF_FRAMES-eng": "146261", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-05 12:41:23", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-05 12:41:23" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "01:41:40.397000000", + "DURATION-eng": "01:41:40.397000000", + "NUMBER_OF_BYTES": "97606659", + "NUMBER_OF_BYTES-eng": "97606659", + "NUMBER_OF_FRAMES": "262723", + "NUMBER_OF_FRAMES-eng": "262723", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-05 12:41:23", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-05 12:41:23", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Bright (2017)/Bright.2017.1080p.WEB.x264-CiELOS.mkv": { + "format": { + "bit_rate": "3107585", + "duration": "7066.784000", + "filename": "Bright (2017)/Bright.2017.1080p.WEB.x264-CiELOS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "2745079415", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-22T08:48:03.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Bright.2017.1080p.WEB.x264-CiELOS" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2721712", + "BPS-eng": "2721712", + "DURATION": "01:57:46.375000000", + "DURATION-eng": "01:57:46.375000000", + "NUMBER_OF_BYTES": "2404080040", + "NUMBER_OF_BYTES-eng": "2404080040", + "NUMBER_OF_FRAMES": "169593", + "NUMBER_OF_FRAMES-eng": "169593", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-22 08:48:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-22 08:48:03", + "title": "Bright.2017.1080p.WEB.x264-CiELOS" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:57:46.784000000", + "DURATION-eng": "01:57:46.784000000", + "NUMBER_OF_BYTES": "339205632", + "NUMBER_OF_BYTES-eng": "339205632", + "NUMBER_OF_FRAMES": "220837", + "NUMBER_OF_FRAMES-eng": "220837", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-22 08:48:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-22 08:48:03", + "language": "eng", + "title": "Bright.2017.1080p.WEB.x264-CiELOS" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7066.784000", + "duration_ts": 7066784, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:56:38.041000000", + "DURATION-eng": "01:56:38.041000000", + "NUMBER_OF_BYTES": "64844", + "NUMBER_OF_BYTES-eng": "64844", + "NUMBER_OF_FRAMES": "1978", + "NUMBER_OF_FRAMES-eng": "1978", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-22 08:48:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-22 08:48:03", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7066.784000", + "duration_ts": 636010560, + "has_b_frames": 0, + "height": 600, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7066.784000", + "duration_ts": 636010560, + "has_b_frames": 0, + "height": 176, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7066.784000", + "duration_ts": 636010560, + "has_b_frames": 0, + "height": 120, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7066.784000", + "duration_ts": 636010560, + "has_b_frames": 0, + "height": 882, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "The Man From the Earth (2007)/The.Man.From.Earth.2007.1080p.x264.YIFY.mp4": { + "format": { + "bit_rate": "2295207", + "duration": "5228.201667", + "filename": "The Man From the Earth (2007)/The.Man.From.Earth.2007.1080p.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1499976175", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-11-23T02:05:57.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2199100", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5228.097875", + "duration_ts": 501897396, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "125349", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-11-23T02:05:57.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92001", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5228.202667", + "duration_ts": 250953728, + "index": 1, + "max_bit_rate": "100456", + "nb_frames": "245072", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-23T02:06:37.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Good Will Hunting/Good Will Hunting.avi": { + "format": { + "bit_rate": "773295", + "duration": "7596.216000", + "filename": "Good Will Hunting/Good Will Hunting.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734265344", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "650058", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 288, + "coded_width": 528, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7596.213625", + "duration_ts": 182127, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "182127", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 528 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "110528", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7596.216000", + "duration_ts": 316509, + "index": 1, + "nb_frames": "316509", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Fantastic Mr Feynman (2013)/the.fantastic.mr.feynman.2013.1080p.hdtv.h264-underbelly.mkv": { + "format": { + "bit_rate": "4021181", + "duration": "3574.360000", + "filename": "The Fantastic Mr Feynman (2013)/the.fantastic.mr.feynman.2013.1080p.hdtv.h264-underbelly.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1796643566", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 3, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3881373", + "DURATION-eng": "00:59:34.360000000", + "NUMBER_OF_BYTES-eng": "1734178122", + "NUMBER_OF_FRAMES-eng": "102015", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "123874", + "DURATION-eng": "00:59:34.357000000", + "NUMBER_OF_BYTES-eng": "55346567", + "NUMBER_OF_FRAMES-eng": "167548", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVB subtitles", + "codec_name": "dvb_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3574.360000", + "duration_ts": 3574360, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31224", + "DURATION-eng": "00:59:18.360000000", + "NUMBER_OF_BYTES-eng": "13888495", + "NUMBER_OF_FRAMES-eng": "1138", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Children Of Men/Children Of Men.avi": { + "format": { + "bit_rate": "936969", + "duration": "6281.520000", + "filename": "Children Of Men/Children Of Men.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735698944", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "815264", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 274, + "coded_width": 524, + "display_aspect_ratio": "262:137", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6281.520000", + "duration_ts": 157038, + "has_b_frames": 1, + "height": 274, + "index": 0, + "level": 5, + "nb_frames": "157038", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 524 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "261730", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "APOCALYPSE NOW (1979)/APOCALYPSE NOW 1979 1080p Oorlog.mkv": { + "format": { + "bit_rate": "4538416", + "duration": "11763.968000", + "filename": "APOCALYPSE NOW (1979)/APOCALYPSE NOW 1979 1080p Oorlog.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "6673723400", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf56.30.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 125, + "start_time": "0.125000", + "tags": { + "LANGUAGE": "English", + "title": "h264_qsync_hw 1920x816 47/20", + "track": "0" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "576000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "LANGUAGE": "English", + "title": "ac3 48000Hz 6Ch.", + "track": "1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11763.968000", + "duration_ts": 11763968, + "height": 816, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "LANGUAGE": "English", + "title": "dvd_subtitle 1920x816", + "track": "2" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11763.968000", + "duration_ts": 11763968, + "height": 816, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "LANGUAGE": "Dutch", + "title": "dvd_subtitle 1920x816", + "track": "3" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Jaws (1975)/Jaws.1975.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1453701", + "duration": "7434.751667", + "filename": "Jaws (1975)/Jaws.1975.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1350988562", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-08-07T00:29:15.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64442", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7434.752000", + "duration_ts": 356868096, + "index": 0, + "max_bit_rate": "82168", + "nb_frames": "348504", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-08-07T00:29:15.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1385340", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7434.677250", + "duration_ts": 178432254, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "178254", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-08-07T00:29:19.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Fargo/Fargo.avi": { + "format": { + "bit_rate": "1342152", + "duration": "5888.096430", + "filename": "Fargo/Fargo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "987840512", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1193377", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5888.096430", + "duration_ts": 141173, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 3, + "nb_frames": "141173", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "136072", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5888.088000", + "duration_ts": 245337, + "index": 1, + "nb_frames": "245337", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Hudsucker Proxy (1994)/The Hudsucker Proxy CD1.avi": { + "format": { + "bit_rate": "1937890", + "duration": "3040.454083", + "filename": "The Hudsucker Proxy (1994)/The Hudsucker Proxy CD1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736508354", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "artist": "theJABBERWOCK", + "title": "The Hudsucker Proxy (AC3-2ch) (2of2)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1736433", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3040.454083", + "duration_ts": 72898, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": -99, + "nb_frames": "72898", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "72970898", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "The People vs Larry Flynt/The.People.vs.Larry.Flynt.1996.DVDRip.XviD.AR.cd1.avi": { + "format": { + "bit_rate": "1459123", + "duration": "4019.849167", + "filename": "The People vs Larry Flynt/The.People.vs.Larry.Flynt.1996.DVDRip.XviD.AR.cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733181952", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1260453", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4019.849167", + "duration_ts": 96380, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "96380", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "96476380", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Wild Wild West (1999)/9ae33416148140af91c4ef914727ba65.mkv": { + "format": { + "bit_rate": "3010753", + "duration": "6360.103000", + "filename": "Wild Wild West (1999)/9ae33416148140af91c4ef914727ba65.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2393587626", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:46:00.103000000" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:46:00.096000000" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6360.103000", + "duration_ts": 6360103, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:45:55.725000000", + "ENCODER": "Lavc57.106.101 ssa" + }, + "time_base": "1/1000" + } + ] + }, + "Ken Jeong You Complete Me Ho (2019)/2511201bb9974452ade31abcd61dac76.mkv": { + "format": { + "bit_rate": "3653161", + "duration": "3740.192000", + "filename": "Ken Jeong You Complete Me Ho (2019)/2511201bb9974452ade31abcd61dac76.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 29, + "probe_score": 100, + "size": "1707940530", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-14T09:10:24.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3006418", + "DURATION-eng": "01:02:19.861000000", + "NUMBER_OF_BYTES-eng": "1405448285", + "NUMBER_OF_FRAMES-eng": "89667", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:02:20.192000000", + "NUMBER_OF_BYTES-eng": "299215360", + "NUMBER_OF_FRAMES-eng": "116881", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "99", + "DURATION-eng": "01:01:49.581000000", + "NUMBER_OF_BYTES-eng": "45950", + "NUMBER_OF_FRAMES-eng": "1099", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "103", + "DURATION-eng": "01:01:49.581000000", + "NUMBER_OF_BYTES-eng": "47916", + "NUMBER_OF_FRAMES-eng": "1182", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "153", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "71221", + "NUMBER_OF_FRAMES-eng": "1093", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "88", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "40884", + "NUMBER_OF_FRAMES-eng": "1082", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "82", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "38233", + "NUMBER_OF_FRAMES-eng": "1041", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "152", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "70774", + "NUMBER_OF_FRAMES-eng": "1082", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "78", + "DURATION-eng": "01:01:51.290000000", + "NUMBER_OF_BYTES-eng": "36256", + "NUMBER_OF_FRAMES-eng": "1041", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "86", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "39931", + "NUMBER_OF_FRAMES-eng": "1026", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "77", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "35808", + "NUMBER_OF_FRAMES-eng": "829", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "85", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "39822", + "NUMBER_OF_FRAMES-eng": "1021", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "125", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "58048", + "NUMBER_OF_FRAMES-eng": "1093", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "93", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "43603", + "NUMBER_OF_FRAMES-eng": "1097", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "98", + "DURATION-eng": "01:01:51.249000000", + "NUMBER_OF_BYTES-eng": "45623", + "NUMBER_OF_FRAMES-eng": "1068", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:01:49.914000000", + "NUMBER_OF_BYTES-eng": "37306", + "NUMBER_OF_FRAMES-eng": "841", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "126", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "58775", + "NUMBER_OF_FRAMES-eng": "1096", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "83", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "38602", + "NUMBER_OF_FRAMES-eng": "1091", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "79", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "36964", + "NUMBER_OF_FRAMES-eng": "922", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "75", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "35125", + "NUMBER_OF_FRAMES-eng": "1042", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "82", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "38459", + "NUMBER_OF_FRAMES-eng": "1036", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "83", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "38873", + "NUMBER_OF_FRAMES-eng": "995", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "112", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "51971", + "NUMBER_OF_FRAMES-eng": "1072", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "130", + "DURATION-eng": "01:01:51.499000000", + "NUMBER_OF_BYTES-eng": "60762", + "NUMBER_OF_FRAMES-eng": "1088", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "90", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "42081", + "NUMBER_OF_FRAMES-eng": "1094", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "247", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "114917", + "NUMBER_OF_FRAMES-eng": "1092", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "97", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "45266", + "NUMBER_OF_FRAMES-eng": "1090", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "96", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "44861", + "NUMBER_OF_FRAMES-eng": "1082", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3740.192000", + "duration_ts": 3740192, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "88", + "DURATION-eng": "01:01:51.165000000", + "NUMBER_OF_BYTES-eng": "40848", + "NUMBER_OF_FRAMES-eng": "1095", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-14 09:10:24", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Nineteen Eighty-Four/Nineteen Eighty-Four [H.264-AAC].mp4": { + "format": { + "bit_rate": "1839680", + "duration": "6358.526667", + "filename": "Nineteen Eighty-Four/Nineteen Eighty-Four [H.264-AAC].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1462207578", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2008-10-13T07:43:23.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1654185", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 576, + "coded_width": 720, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6358.480000", + "duration_ts": 158962, + "has_b_frames": 2, + "height": 576, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "158962", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "64:45", + "start_pts": 2, + "start_time": "0.080000", + "tags": { + "creation_time": "2008-10-11T12:39:13.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "181370", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6358.528000", + "duration_ts": 305209344, + "index": 1, + "max_bit_rate": "248096", + "nb_frames": "298056", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2008-10-13T07:44:18.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Singles (1992)/5bfd934af0bd4611bafae3b8ed5c05ce.mkv": { + "format": { + "bit_rate": "22139269", + "duration": "5952.203000", + "filename": "Singles (1992)/5bfd934af0bd4611bafae3b8ed5c05ce.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 9, + "probe_score": 100, + "size": "16472178165", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-11T14:03:35.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19938350", + "DURATION-eng": "01:39:12.196000000", + "NUMBER_OF_BYTES-eng": "14834621248", + "NUMBER_OF_FRAMES-eng": "142710", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1995616", + "DURATION-eng": "01:39:12.203000000", + "NUMBER_OF_BYTES-eng": "1484789568", + "NUMBER_OF_FRAMES-eng": "558019", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35921", + "DURATION-eng": "01:39:05.648000000", + "NUMBER_OF_BYTES-eng": "26697234", + "NUMBER_OF_FRAMES-eng": "2372", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28060", + "DURATION-eng": "01:36:58.271000000", + "NUMBER_OF_BYTES-eng": "20407765", + "NUMBER_OF_FRAMES-eng": "2114", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35582", + "DURATION-eng": "01:39:05.648000000", + "NUMBER_OF_BYTES-eng": "26445333", + "NUMBER_OF_FRAMES-eng": "2340", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "ger", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23295", + "DURATION-eng": "01:33:51.001000000", + "NUMBER_OF_BYTES-eng": "16397336", + "NUMBER_OF_FRAMES-eng": "2622", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21287", + "DURATION-eng": "01:38:37.411000000", + "NUMBER_OF_BYTES-eng": "15745992", + "NUMBER_OF_FRAMES-eng": "2179", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29407", + "DURATION-eng": "01:38:37.453000000", + "NUMBER_OF_BYTES-eng": "21752381", + "NUMBER_OF_FRAMES-eng": "2016", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "spa", + "title": "Castillian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5952.203000", + "duration_ts": 5952203, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29916", + "DURATION-eng": "01:38:37.662000000", + "NUMBER_OF_BYTES-eng": "22129587", + "NUMBER_OF_FRAMES-eng": "2495", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-11 14:03:35", + "language": "spa", + "title": "Latin American" + }, + "time_base": "1/1000" + } + ] + }, + "Synecdoche New York (2008)/Synecdoche.New.York.LIMITED.DVDRip.XviD-iMBT-cd2.avi": { + "format": { + "bit_rate": "1587579", + "duration": "3686.478145", + "filename": "Synecdoche New York (2008)/Synecdoche.New.York.LIMITED.DVDRip.XviD-iMBT-cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731572224", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1130260", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3686.478145", + "duration_ts": 88387, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": 3, + "nb_frames": "88387", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "206413816", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Wilson (2017)/Wilson.2017.LIMITED.720p.BluRay.x264-GECKOS.mkv": { + "format": { + "bit_rate": "6622320", + "duration": "5669.963000", + "filename": "Wilson (2017)/Wilson.2017.LIMITED.720p.BluRay.x264-GECKOS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4693539287", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-06-06T22:23:24.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 696, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5111096", + "BPS-eng": "5111096", + "DURATION": "01:34:29.882000000", + "DURATION-eng": "01:34:29.882000000", + "NUMBER_OF_BYTES": "3622414437", + "NUMBER_OF_BYTES-eng": "3622414437", + "NUMBER_OF_FRAMES": "135941", + "NUMBER_OF_FRAMES-eng": "135941", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-06 22:23:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-06 22:23:24", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:34:29.963000000", + "DURATION-eng": "01:34:29.963000000", + "NUMBER_OF_BYTES": "1069496708", + "NUMBER_OF_BYTES-eng": "1069496708", + "NUMBER_OF_FRAMES": "531559", + "NUMBER_OF_FRAMES-eng": "531559", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-06 22:23:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-06 22:23:24", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Keanu (2016)/Keanu.2016.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "771097", + "duration": "5985.791667", + "filename": "Keanu (2016)/Keanu.2016.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "576953704", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2016-07-12T16:30:06.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64522", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5985.792000", + "duration_ts": 287318016, + "index": 0, + "max_bit_rate": "100768", + "nb_frames": "280584", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-07-12T16:30:06.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "702643", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5985.729750", + "duration_ts": 143657514, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "143514", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2016-07-12T16:30:08.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Die Hard 2 - Die Harder/die.hard.2.-.cd1.avi": { + "format": { + "bit_rate": "1459049", + "duration": "4029.238790", + "filename": "Die Hard 2 - Die Harder/die.hard.2.-.cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734857216", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "959/40", + "bit_rate": "1001692", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "40/959", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4029.238790", + "duration_ts": 96601, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "96601", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "959/40", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "40/959", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "225636751", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "The Fifth Element (1997)/The.Fifth.Element.1997.REMASTERED.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "979866", + "duration": "7553.620000", + "filename": "The Fifth Element (1997)/The.Fifth.Element.1997.REMASTERED.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "925191971", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-08-17T01:11:13.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "66626", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7553.621333", + "duration_ts": 362573824, + "index": 0, + "max_bit_rate": "123648", + "nb_frames": "354076", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-17T01:11:13.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "909107", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7553.546000", + "duration_ts": 181285104, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "181104", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-08-17T01:11:17.000000Z", + "handler_name": "The.Fifth.Element.1997.REMASTERED.BluRay.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Super Troopers/Super Troopers.avi": { + "format": { + "bit_rate": "990400", + "duration": "5912.912913", + "filename": "Super Troopers/Super Troopers.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732018688", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "847932", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5912.912913", + "duration_ts": 141768, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "141768", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129840", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5912.856000", + "duration_ts": 246369, + "index": 1, + "nb_frames": "246369", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Man Who Killed Don Quixote (2018)/36afa9e1133a4311974332a7c7921a32.mkv": { + "format": { + "bit_rate": "5880716", + "duration": "7983.552000", + "filename": "The Man Who Killed Don Quixote (2018)/36afa9e1133a4311974332a7c7921a32.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5868625622", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-27T13:10:47.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5238889", + "DURATION-eng": "02:13:03.542000000", + "NUMBER_OF_BYTES-eng": "5228111518", + "NUMBER_OF_FRAMES-eng": "191605", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.0.0 ('Voice In My Head') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-27 13:10:47", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:13:03.552000000", + "NUMBER_OF_BYTES-eng": "638684160", + "NUMBER_OF_FRAMES-eng": "249486", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.0.0 ('Voice In My Head') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-27 13:10:47", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Young Guns (1988)/Young Guns.1988-DvDRiP[x].avi": { + "format": { + "bit_rate": "1130504", + "duration": "6405.839173", + "filename": "Young Guns (1988)/Young Guns.1988-DvDRiP[x].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "905228482", + "start_time": "0.000000", + "tags": { + "encoder": "Lavf52.31.0" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "989461", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x64697678", + "codec_tag_string": "xvid", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6405.839173", + "duration_ts": 191983, + "has_b_frames": 0, + "height": 480, + "index": 0, + "level": 3, + "nb_frames": "191983", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "4:3", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6397.335510", + "duration_ts": 244898, + "index": 1, + "nb_frames": "244898", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "Alien Resurrection/Alien Resurrection.avi": { + "format": { + "bit_rate": "1499627", + "duration": "6261.600000", + "filename": "Alien Resurrection/Alien Resurrection.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1173758266", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1361979", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6261.600000", + "duration_ts": 156540, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "156540", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Video " + }, + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "100185600", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio " + }, + "time_base": "1/16000" + } + ] + }, + "UglyDolls (2019)/67b7f4247d4841d48d8a4ef75b1bf60b.mkv": { + "format": { + "bit_rate": "5486469", + "duration": "5246.208000", + "filename": "UglyDolls (2019)/67b7f4247d4841d48d8a4ef75b1bf60b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "3597895246", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-07-16T04:52:28.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0", + "title": "UglyDolls.2019.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1038, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "958:519", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1038, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5100561", + "DURATION-eng": "01:27:26.158000000", + "NUMBER_OF_BYTES-eng": "3344794165", + "NUMBER_OF_FRAMES-eng": "125782", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-16 04:52:28", + "language": "eng", + "title": "UglyDolls.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:27:26.208000000", + "NUMBER_OF_BYTES-eng": "251817984", + "NUMBER_OF_FRAMES-eng": "163944", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-16 04:52:28", + "language": "eng", + "title": "UglyDolls.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5246.208000", + "duration_ts": 472158720, + "has_b_frames": 0, + "height": 120, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5246.208000", + "duration_ts": 472158720, + "has_b_frames": 0, + "height": 882, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5246.208000", + "duration_ts": 472158720, + "has_b_frames": 0, + "height": 600, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5246.208000", + "duration_ts": 472158720, + "has_b_frames": 0, + "height": 176, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + } + ] + }, + "John Wick Chapter 2 (2017)/john.wick.chapter.2.2017.720p.brrip.x264.ac3-evo.mkv": { + "format": { + "bit_rate": "3044980", + "duration": "7342.400000", + "filename": "John Wick Chapter 2 (2017)/john.wick.chapter.2.2017.720p.brrip.x264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2794683430", + "start_time": "0.078000", + "tags": { + "creation_time": "2017-05-31T13:40:56.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Day After Tomorrow/Day After Tomorrow.avi": { + "format": { + "bit_rate": "852042", + "duration": "7420.464000", + "filename": "The Day After Tomorrow/Day After Tomorrow.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "790319104", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "724210", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7420.462129", + "duration_ts": 177913, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "177913", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115128", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7420.464000", + "duration_ts": 309186, + "index": 1, + "nb_frames": "309186", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Beetlejuice (1988)/BeetleJuice 720p BRRip.mkv": { + "format": { + "bit_rate": "2936669", + "duration": "5526.357000", + "filename": "Beetlejuice (1988)/BeetleJuice 720p BRRip.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2028635633", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-15T06:09:18.000000Z", + "encoder": "libebml v1.2.0 + libmatroska v1.1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5526.357000", + "duration_ts": 5526357, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Maverick/Maverick.mp4": { + "format": { + "bit_rate": "1344156", + "duration": "7595.200000", + "filename": "Maverick/Maverick.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1276142335", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T01:48:12.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "455660000/18987969", + "bit_rate": "1206561", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "18987969/911320000", + "codec_type": "video", + "coded_height": 364, + "coded_width": 704, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "5632:2457", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7595.187600", + "duration_ts": 683566884, + "has_b_frames": 1, + "height": 364, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "182264", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T01:48:12.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132260", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7595.200000", + "duration_ts": 364569600, + "index": 1, + "max_bit_rate": "205296", + "nb_frames": "356025", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T01:48:12.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Inside Out (2015)/Inside.Out.2015.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2179596", + "duration": "5677.908333", + "filename": "Inside Out (2015)/Inside.Out.2015.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1546943392", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-10-20T09:46:52.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2081898", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5677.797125", + "duration_ts": 136267131, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "136131", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-10-20T09:46:52.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93640", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5677.909333", + "duration_ts": 272539648, + "index": 1, + "max_bit_rate": "106192", + "nb_frames": "266152", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-10-20T09:47:03.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Ghost In The Shell (1995)/Ghost.In.The.Shell.1995.1080p.BluRay.x264-MOOVEE.mkv": { + "format": { + "bit_rate": "10866445", + "duration": "5183.424000", + "filename": "Ghost In The Shell (1995)/Ghost.In.The.Shell.1995.1080p.BluRay.x264-MOOVEE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7040674485", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-06-16T22:05:19.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1008, + "coded_width": 1872, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1008, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9488761", + "BPS-eng": "9488761", + "DURATION": "01:26:23.387000000", + "DURATION-eng": "01:26:23.387000000", + "NUMBER_OF_BYTES": "6147990671", + "NUMBER_OF_BYTES-eng": "6147990671", + "NUMBER_OF_FRAMES": "124277", + "NUMBER_OF_FRAMES-eng": "124277", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-16 22:05:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-16 22:05:19", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1872 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:26:23.424000000", + "DURATION-eng": "01:26:23.424000000", + "NUMBER_OF_BYTES": "414673920", + "NUMBER_OF_BYTES-eng": "414673920", + "NUMBER_OF_FRAMES": "161982", + "NUMBER_OF_FRAMES-eng": "161982", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-16 22:05:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-16 22:05:19", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "768000", + "BPS-eng": "768000", + "DURATION": "01:22:40.363000000", + "DURATION-eng": "01:22:40.363000000", + "NUMBER_OF_BYTES": "476194884", + "NUMBER_OF_BYTES-eng": "476194884", + "NUMBER_OF_FRAMES": "465034", + "NUMBER_OF_FRAMES-eng": "465034", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-16 22:05:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-16 22:05:19", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5183.424000", + "duration_ts": 5183424, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "01:25:18.321000000", + "DURATION-eng": "01:25:18.321000000", + "NUMBER_OF_BYTES": "33170", + "NUMBER_OF_BYTES-eng": "33170", + "NUMBER_OF_FRAMES": "775", + "NUMBER_OF_FRAMES-eng": "775", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-16 22:05:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-16 22:05:19", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5183.424000", + "duration_ts": 5183424, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:25:18.321000000", + "DURATION-eng": "01:25:18.321000000", + "NUMBER_OF_BYTES": "234", + "NUMBER_OF_BYTES-eng": "234", + "NUMBER_OF_FRAMES": "5", + "NUMBER_OF_FRAMES-eng": "5", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-16 22:05:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-16 22:05:19", + "language": "eng", + "title": "English Forced" + }, + "time_base": "1/1000" + } + ] + }, + "The Mummy - Tomb Of The Dragon Emperor (2008)/The.Mummy-Tomb.Of.The.Dragon.Emperor[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "916165", + "duration": "6425.000000", + "filename": "The Mummy - Tomb Of The Dragon Emperor (2008)/The.Mummy-Tomb.Of.The.Dragon.Emperor[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735795200", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "794460", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 672, + "display_aspect_ratio": "42:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6425.000000", + "duration_ts": 160625, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "160625", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "267708", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "XXx State Of The Union (2005)/xXx.State.of.the.Union.2005.720p.BluRay.DTS-HD.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "5902788", + "duration": "6056.467000", + "filename": "XXx State Of The Union (2005)/xXx.State.of.the.Union.2005.720p.BluRay.DTS-HD.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4468755622", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:40:56.467000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:40:56.042000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Transcendence (2014)/Transcendence.2014.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "852596", + "duration": "7154.666667", + "filename": "Transcendence (2014)/Transcendence.2014.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "762505379", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-07-01T11:12:01.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "97234", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7154.666667", + "duration_ts": 343424000, + "index": 0, + "max_bit_rate": "170464", + "nb_frames": "335375", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-07-01T11:08:58.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "751225", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7154.605792", + "duration_ts": 171710539, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "171539", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-07-01T11:12:04.000000Z", + "handler_name": "2014.WEB-DL.720p.H264.avs.264@GPAC0.5.1-DEV-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Hustle & Flow (2005)/dmd-hustleflow-cd2.avi": { + "format": { + "bit_rate": "1603332", + "duration": "3656.573240", + "filename": "Hustle & Flow (2005)/dmd-hustleflow-cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732837888", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1148625", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3656.573240", + "duration_ts": 87670, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "87670", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "204766260", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Die Hard With a Vengeance/die.hard.3.-.cd1.avi": { + "format": { + "bit_rate": "1583858", + "duration": "3703.600000", + "filename": "Die Hard With a Vengeance/die.hard.3.-.cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733247488", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.4.13" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1190149", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3703.600000", + "duration_ts": 92590, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 3, + "nb_frames": "92590", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "177772800", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Wuthering Heights (1992)/Wuthering Heights (1993).avi": { + "format": { + "bit_rate": "1228992", + "duration": "6118.000000", + "filename": "Wuthering Heights (1992)/Wuthering Heights (1993).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "939872256", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "774082", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 624, + "display_aspect_ratio": "39:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6118.000000", + "duration_ts": 152950, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "152950", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "342607104", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Beowulf (2007)/Beowulf.mp4": { + "format": { + "bit_rate": "1798360", + "duration": "6883.135000", + "filename": "Beowulf (2007)/Beowulf.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1547294345", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2009-07-26T05:32:52.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "1560039", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6883.012124", + "duration_ts": 460425330, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "165027", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2790, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-07-25T21:25:07.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "234618", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6883.136000", + "duration_ts": 330390528, + "index": 1, + "max_bit_rate": "333872", + "nb_frames": "322647", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-07-26T05:33:26.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Ghostbusters II (1989)/d0ee12b434324feb82bfff2d8de47b04.mkv": { + "format": { + "bit_rate": "3007794", + "duration": "6499.493000", + "filename": "Ghostbusters II (1989)/d0ee12b434324feb82bfff2d8de47b04.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2443642672", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-08T22:01:36.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2557899", + "BPS-eng": "2557899", + "DURATION": "01:48:19.493000000", + "DURATION-eng": "01:48:19.493000000", + "NUMBER_OF_BYTES": "2078131512", + "NUMBER_OF_BYTES-eng": "2078131512", + "NUMBER_OF_FRAMES": "155832", + "NUMBER_OF_FRAMES-eng": "155832", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-08 22:01:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-08 22:01:36", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:48:19.488000000", + "DURATION-eng": "01:48:19.488000000", + "NUMBER_OF_BYTES": "363971328", + "NUMBER_OF_BYTES-eng": "363971328", + "NUMBER_OF_FRAMES": "203109", + "NUMBER_OF_FRAMES-eng": "203109", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-08 22:01:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-08 22:01:36", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6499.493000", + "duration_ts": 6499493, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:46:02.022000000", + "DURATION-eng": "01:46:02.022000000", + "NUMBER_OF_BYTES": "67059", + "NUMBER_OF_BYTES-eng": "67059", + "NUMBER_OF_FRAMES": "1702", + "NUMBER_OF_FRAMES-eng": "1702", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-08 22:01:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-08 22:01:36", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Happytime Murders (2018)/873992893bf24922839249d19a82da80.mkv": { + "format": { + "bit_rate": "7011279", + "duration": "5449.696000", + "filename": "The Happytime Murders (2018)/873992893bf24922839249d19a82da80.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "4776167966", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-19T10:38:20.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "34240:14271", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "214:213", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5499648", + "DURATION-eng": "01:30:49.695000000", + "NUMBER_OF_BYTES-eng": "3746425736", + "NUMBER_OF_FRAMES-eng": "130662", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-19 10:38:20", + "language": "eng", + "title": "The.Happytime.Murders.2018.720p.BluRay.x264.DTS-FGT" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1509000", + "DURATION-eng": "01:30:49.696000000", + "NUMBER_OF_BYTES-eng": "1027949008", + "NUMBER_OF_FRAMES-eng": "510909", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-19 10:38:20", + "language": "eng", + "title": "The.Happytime.Murders.2018.720p.BluRay.x264.DTS-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5449.696000", + "duration_ts": 5449696, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "91", + "DURATION-eng": "01:19:53.823000000", + "NUMBER_OF_BYTES-eng": "54658", + "NUMBER_OF_FRAMES-eng": "1805", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-19 10:38:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5449.696000", + "duration_ts": 490472640, + "has_b_frames": 0, + "height": 600, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5449.696000", + "duration_ts": 490472640, + "has_b_frames": 0, + "height": 176, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5449.696000", + "duration_ts": 490472640, + "has_b_frames": 0, + "height": 120, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5449.696000", + "duration_ts": 490472640, + "has_b_frames": 0, + "height": 882, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "The Men Who Stare At Goats (2009)/The.Men.Who.Stare.at.Goats.2009.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1311868", + "duration": "5344.361667", + "filename": "The Men Who Stare At Goats (2009)/The.Men.Who.Stare.at.Goats.2009.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "876387414", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2011-12-30T10:21:06.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64485", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5344.362667", + "duration_ts": 256529408, + "index": 0, + "max_bit_rate": "72160", + "nb_frames": "250517", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-12-30T10:21:06.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1243466", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1216, + "display_aspect_ratio": "76:45", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5344.297292", + "duration_ts": 128263135, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "128135", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-12-30T10:21:09.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1216 + } + ] + }, + "Across the Universe/Across the Universe[2007]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "733337", + "duration": "7998.665332", + "filename": "Across the Universe/Across the Universe[2007]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733214720", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "611976", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 584, + "display_aspect_ratio": "73:30", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7998.665332", + "duration_ts": 191776, + "has_b_frames": 1, + "height": 240, + "index": 0, + "level": 5, + "nb_frames": "191776", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 584 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "111981315", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "When We Were Kings (1996)/When.We.Were.Kings.1996.1080p.AMZN.WEB-DL.DDP5.1.H264-Ao.mkv": { + "format": { + "bit_rate": "15011169", + "duration": "5241.632000", + "filename": "When We Were Kings (1996)/When.We.Were.Kings.1996.1080p.AMZN.WEB-DL.DDP5.1.H264-Ao.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "9835378525", + "start_time": "0.000000", + "tags": { + "creation_time": "2001-01-01T00:00:00.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14144821", + "DURATION-eng": "01:27:21.570000000", + "NUMBER_OF_BYTES-eng": "9267634199", + "NUMBER_OF_FRAMES-eng": "125672", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-21 08:15:31" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:27:21.632000000", + "NUMBER_OF_BYTES-eng": "419330560", + "NUMBER_OF_FRAMES-eng": "163801", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-21 08:15:31", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "224000", + "DURATION-eng": "01:27:21.632000000", + "NUMBER_OF_BYTES-eng": "146765696", + "NUMBER_OF_FRAMES-eng": "163801", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-21 08:15:31", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5241.632000", + "duration_ts": 5241632, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "110", + "DURATION-eng": "01:26:54.000000000", + "NUMBER_OF_BYTES-eng": "71951", + "NUMBER_OF_FRAMES-eng": "1756", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-21 08:15:31", + "language": "eng", + "title": "English [CC]" + }, + "time_base": "1/1000" + } + ] + }, + "Thom Pain (2017)/3e4763cf8e1742429b43649b18581c49.mkv": { + "format": { + "bit_rate": "7552791", + "duration": "4471.175000", + "filename": "Thom Pain (2017)/3e4763cf8e1742429b43649b18581c49.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4221231836", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-19T15:36:08.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6910633", + "BPS-eng": "6910633", + "DURATION": "01:14:31.175000000", + "DURATION-eng": "01:14:31.175000000", + "NUMBER_OF_BYTES": "3862331736", + "NUMBER_OF_BYTES-eng": "3862331736", + "NUMBER_OF_FRAMES": "107201", + "NUMBER_OF_FRAMES-eng": "107201", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-19 15:36:08", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-19 15:36:08" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:14:31.136000000", + "DURATION-eng": "01:14:31.136000000", + "NUMBER_OF_BYTES": "357690880", + "NUMBER_OF_BYTES-eng": "357690880", + "NUMBER_OF_FRAMES": "139723", + "NUMBER_OF_FRAMES-eng": "139723", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-19 15:36:08", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-19 15:36:08", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4471.175000", + "duration_ts": 4471175, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "68", + "BPS-eng": "68", + "DURATION": "01:11:15.024000000", + "DURATION-eng": "01:11:15.024000000", + "NUMBER_OF_BYTES": "36348", + "NUMBER_OF_BYTES-eng": "36348", + "NUMBER_OF_FRAMES": "1002", + "NUMBER_OF_FRAMES-eng": "1002", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-19 15:36:08", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-19 15:36:08", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4471.175000", + "duration_ts": 4471175, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:14:06.217000000", + "DURATION-eng": "01:14:06.217000000", + "NUMBER_OF_BYTES": "37108", + "NUMBER_OF_BYTES-eng": "37108", + "NUMBER_OF_FRAMES": "1043", + "NUMBER_OF_FRAMES-eng": "1043", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-19 15:36:08", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-19 15:36:08", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Star Trek Into Darkness (2013)/Star.Trek.Into.Darkness.2013.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "976664", + "duration": "7925.916667", + "filename": "Star Trek Into Darkness (2013)/Star.Trek.Into.Darkness.2013.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "967620072", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-08-26T09:05:57.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "878863", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7925.918000", + "duration_ts": 190222032, + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "190032", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-08-26T09:05:57.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93705", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7925.141333", + "duration_ts": 380406784, + "index": 1, + "max_bit_rate": "104144", + "nb_frames": "371491", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-08-26T09:06:06.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Salt DIRECTORS CUT (2010)/Salt.DIRECTORS.CUT.2010.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1927725", + "duration": "6244.480000", + "filename": "Salt DIRECTORS CUT (2010)/Salt.DIRECTORS.CUT.2010.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1504705245", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-10T02:47:57.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1827702", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6244.363125", + "duration_ts": 149864715, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "149715", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-02-10T02:47:57.000000Z", + "handler_name": "264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95947", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6244.480000", + "duration_ts": 299735040, + "index": 1, + "max_bit_rate": "148344", + "nb_frames": "292710", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-09T23:05:10.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Wrestler (2008)/refined-wrestler-blu720p.mkv": { + "format": { + "bit_rate": "5717765", + "duration": "6571.450400", + "filename": "The Wrestler (2008)/refined-wrestler-blu720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4696751733", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/20000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English DTS 1509kbps" + }, + "time_base": "1/20000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6571.450400", + "duration_ts": 131429008, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/20000" + } + ] + }, + "Hannibal/Hannibal.m4v": { + "format": { + "bit_rate": "1456109", + "duration": "7891.744000", + "filename": "Hannibal/Hannibal.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1436404989", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T18:06:49.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "425679750/17756081", + "bit_rate": "871587", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "17756081/851359500", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "853:464", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7891.591556", + "duration_ts": 710243240, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "189191", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "853:720", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T18:06:49.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131441", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7891.733333", + "duration_ts": 378803200, + "index": 1, + "max_bit_rate": "222000", + "nb_frames": "369925", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T18:06:49.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7891.744000", + "duration_ts": 378803712, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "246617", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T18:06:49.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Cowboys And Aliens (2011)/cowboys.and.aliens.2011.extended.720p.bluray.x264-crossbow.mkv": { + "format": { + "bit_rate": "6935980", + "duration": "8113.408000", + "filename": "Cowboys And Aliens (2011)/cowboys.and.aliens.2011.extended.720p.bluray.x264-crossbow.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "7034304550", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-20T22:20:54.000000Z", + "encoder": "libebml v1.2.2 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8113.408000", + "duration_ts": 8113408, + "index": 1, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Untouchables (1987)/The Untouchables Special Collector's Edition 1987 DvDrip[Eng]-greenbud1969.avi": { + "format": { + "bit_rate": "938057", + "duration": "7165.950458", + "filename": "The Untouchables (1987)/The Untouchables Special Collector's Edition 1987 DvDrip[Eng]-greenbud1969.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "840259584", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "803050", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7165.950458", + "duration_ts": 171811, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "171811", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "298581", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Constantine (2005)/Constantine 2005 1080p BluRay DUAL 10bit DD5.1 x265-FRDS.mkv": { + "format": { + "bit_rate": "6159605", + "duration": "7247.328000", + "filename": "Constantine (2005)/Constantine 2005 1080p BluRay DUAL 10bit DD5.1 x265-FRDS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "5580085273", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-01T12:01:05.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 792, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 792, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4861563", + "BPS-eng": "4861563", + "DURATION": "02:00:47.324000000", + "DURATION-eng": "02:00:47.324000000", + "NUMBER_OF_BYTES": "4404165311", + "NUMBER_OF_BYTES-eng": "4404165311", + "NUMBER_OF_FRAMES": "173762", + "NUMBER_OF_FRAMES-eng": "173762", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-01 12:01:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-01 12:01:05" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:00:47.328000000", + "DURATION-eng": "02:00:47.328000000", + "NUMBER_OF_BYTES": "579786240", + "NUMBER_OF_BYTES-eng": "579786240", + "NUMBER_OF_FRAMES": "226479", + "NUMBER_OF_FRAMES-eng": "226479", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-01 12:01:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-01 12:01:05", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:00:47.296000000", + "DURATION-eng": "02:00:47.296000000", + "NUMBER_OF_BYTES": "579783680", + "NUMBER_OF_BYTES-eng": "579783680", + "NUMBER_OF_FRAMES": "226478", + "NUMBER_OF_FRAMES-eng": "226478", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-01 12:01:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-01 12:01:05" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7247.328000", + "duration_ts": 7247328, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7312", + "BPS-eng": "7312", + "DURATION": "02:00:13.331000000", + "DURATION-eng": "02:00:13.331000000", + "NUMBER_OF_BYTES": "6593813", + "NUMBER_OF_BYTES-eng": "6593813", + "NUMBER_OF_FRAMES": "1844", + "NUMBER_OF_FRAMES-eng": "1844", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-01 12:01:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-01 12:01:05", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7247.328000", + "duration_ts": 7247328, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8532", + "BPS-eng": "8532", + "DURATION": "02:00:32.392000000", + "DURATION-eng": "02:00:32.392000000", + "NUMBER_OF_BYTES": "7714080", + "NUMBER_OF_BYTES-eng": "7714080", + "NUMBER_OF_FRAMES": "2086", + "NUMBER_OF_FRAMES-eng": "2086", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-01 12:01:05", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-01 12:01:05", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The City of Lost Children/The.City.of.Lost.Children.(1995).HDTV.720p.x264-McFly.mkv": { + "format": { + "bit_rate": "5818553", + "duration": "6457.488000", + "filename": "The City of Lost Children/The.City.of.Lost.Children.(1995).HDTV.720p.x264-McFly.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4696654775", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-07-09T11:31:59.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "H264 - 5500 Kbps" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "Dolby Digital 5.1 - 448 Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6457.488000", + "duration_ts": 6457488, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6457.488000", + "duration_ts": 6457488, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6457.488000", + "duration_ts": 6457488, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "scr" + }, + "time_base": "1/1000" + } + ] + }, + "Aladdin (1992)/Aladdin.1992.720p.BRrip.x264.GAZ.YIFY.mp4": { + "format": { + "bit_rate": "1048419", + "duration": "5202.720000", + "filename": "Aladdin (1992)/Aladdin.1992.720p.BRrip.x264.GAZ.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "681829239", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-10T22:54:11.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "948831", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5202.720000", + "duration_ts": 130068000, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "130068", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.080000", + "tags": { + "creation_time": "2013-03-10T22:54:11.000000Z", + "handler_name": "mp4.264#trackID=1:fps=25@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/25000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95980", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5199.786667", + "duration_ts": 249589760, + "index": 1, + "max_bit_rate": "155664", + "nb_frames": "243740", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-10T21:52:11.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Star Trek 5 - The Final Frontier/Star Trek 05 Final Frontier 1989 1280x528.mp4": { + "format": { + "bit_rate": "2258657", + "duration": "6393.130667", + "filename": "Star Trek 5 - The Final Frontier/Star Trek 05 Final Frontier 1989 1280x528.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1804986797", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-17T17:51:53.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1998515", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6393.053333", + "duration_ts": 575374800, + "has_b_frames": 1, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "153280", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-17T17:51:53.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255669", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6393.130667", + "duration_ts": 306870272, + "index": 1, + "max_bit_rate": "339496", + "nb_frames": "299678", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-17T17:51:53.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Hudsucker Proxy (1994)/The Hudsucker Proxy CD2.avi": { + "format": { + "bit_rate": "1634979", + "duration": "3603.683417", + "filename": "The Hudsucker Proxy (1994)/The Hudsucker Proxy CD2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736493444", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "artist": "theJABBERWOCK", + "title": "The Hudsucker Proxy (AC3-2ch) (1of2)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1433520", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3603.683417", + "duration_ts": 86402, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": -99, + "nb_frames": "86402", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "86488402", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Planet of The Apes (1968)/Planet.of.The.Apes.1968.720p.BRrip.x264.GAZ.YIFY.mp4": { + "format": { + "bit_rate": "1060751", + "duration": "6723.178333", + "filename": "Planet of The Apes (1968)/Planet.of.The.Apes.1968.720p.BRrip.x264.GAZ.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "891452930", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-24T18:36:51.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "960996", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6722.882833", + "duration_ts": 161349188, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "161188", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-02-24T18:36:51.000000Z", + "handler_name": "Of.The.Apes.1968.720p.BRRip.x264-x0r.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95874", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6723.178667", + "duration_ts": 322712576, + "index": 1, + "max_bit_rate": "122432", + "nb_frames": "315149", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-24T16:52:58.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Shape Of Water (2017)/d69bfc5d8471496a92b92a71a3364c0d.mkv": { + "format": { + "bit_rate": "5440791", + "duration": "7399.456000", + "filename": "The Shape Of Water (2017)/d69bfc5d8471496a92b92a71a3364c0d.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 25, + "probe_score": 100, + "size": "5032361798", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-06T15:27:40.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4796783", + "DURATION-eng": "02:03:19.434000000", + "NUMBER_OF_BYTES-eng": "4436685573", + "NUMBER_OF_FRAMES-eng": "177409", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:03:19.456000000", + "NUMBER_OF_BYTES-eng": "591956480", + "NUMBER_OF_FRAMES-eng": "231233", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "02:01:14.469000000", + "NUMBER_OF_BYTES-eng": "43284", + "NUMBER_OF_FRAMES-eng": "1500", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56", + "DURATION-eng": "02:02:59.873000000", + "NUMBER_OF_BYTES-eng": "52425", + "NUMBER_OF_FRAMES-eng": "1928", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3", + "DURATION-eng": "01:47:24.355000000", + "NUMBER_OF_BYTES-eng": "2575", + "NUMBER_OF_FRAMES-eng": "169", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "eng", + "title": "Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "69", + "DURATION-eng": "01:57:02.843000000", + "NUMBER_OF_BYTES-eng": "61380", + "NUMBER_OF_FRAMES-eng": "920", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38", + "DURATION-eng": "02:01:39.071000000", + "NUMBER_OF_BYTES-eng": "35262", + "NUMBER_OF_FRAMES-eng": "1095", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44", + "DURATION-eng": "01:57:40.194000000", + "NUMBER_OF_BYTES-eng": "39275", + "NUMBER_OF_FRAMES-eng": "1020", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48", + "DURATION-eng": "01:56:46.847000000", + "NUMBER_OF_BYTES-eng": "42546", + "NUMBER_OF_FRAMES-eng": "1384", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40", + "DURATION-eng": "01:57:55.193000000", + "NUMBER_OF_BYTES-eng": "35735", + "NUMBER_OF_FRAMES-eng": "875", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "02:01:29.510000000", + "NUMBER_OF_BYTES-eng": "42235", + "NUMBER_OF_FRAMES-eng": "1396", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "77", + "DURATION-eng": "01:57:24.210000000", + "NUMBER_OF_BYTES-eng": "68012", + "NUMBER_OF_FRAMES-eng": "1146", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "61", + "DURATION-eng": "01:57:02.368000000", + "NUMBER_OF_BYTES-eng": "54270", + "NUMBER_OF_FRAMES-eng": "1267", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36", + "DURATION-eng": "01:56:49.557000000", + "NUMBER_OF_BYTES-eng": "31811", + "NUMBER_OF_FRAMES-eng": "886", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "hrv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46", + "DURATION-eng": "01:59:02.988000000", + "NUMBER_OF_BYTES-eng": "41494", + "NUMBER_OF_FRAMES-eng": "1354", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "01:59:17.061000000", + "NUMBER_OF_BYTES-eng": "42655", + "NUMBER_OF_FRAMES-eng": "1368", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37", + "DURATION-eng": "01:57:57.261000000", + "NUMBER_OF_BYTES-eng": "33601", + "NUMBER_OF_FRAMES-eng": "1011", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "lit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44", + "DURATION-eng": "01:57:15.350000000", + "NUMBER_OF_BYTES-eng": "39198", + "NUMBER_OF_FRAMES-eng": "1258", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43", + "DURATION-eng": "01:57:08.500000000", + "NUMBER_OF_BYTES-eng": "38174", + "NUMBER_OF_FRAMES-eng": "1218", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "95", + "DURATION-eng": "01:58:08.892000000", + "NUMBER_OF_BYTES-eng": "84575", + "NUMBER_OF_FRAMES-eng": "1297", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "por", + "title": "brazil" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43", + "DURATION-eng": "02:01:35.236000000", + "NUMBER_OF_BYTES-eng": "39862", + "NUMBER_OF_FRAMES-eng": "1144", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35", + "DURATION-eng": "01:57:37.800000000", + "NUMBER_OF_BYTES-eng": "31317", + "NUMBER_OF_FRAMES-eng": "870", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45", + "DURATION-eng": "01:56:54.960000000", + "NUMBER_OF_BYTES-eng": "39923", + "NUMBER_OF_FRAMES-eng": "1366", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38", + "DURATION-eng": "01:57:04.454000000", + "NUMBER_OF_BYTES-eng": "34026", + "NUMBER_OF_FRAMES-eng": "904", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "srp" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7399.456000", + "duration_ts": 7399456, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "50", + "DURATION-eng": "02:01:16.023000000", + "NUMBER_OF_BYTES-eng": "46363", + "NUMBER_OF_FRAMES-eng": "1022", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-06 15:27:40", + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Thunder Soul (2010)/Thunder.Soul.2010.720p.AMZN.WEB-DL.DDP2.0.H.264-monkee.mkv": { + "format": { + "bit_rate": "5495883", + "duration": "5003.520000", + "filename": "Thunder Soul (2010)/Thunder.Soul.2010.720p.AMZN.WEB-DL.DDP2.0.H.264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3437345121", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-30T19:38:46.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5270008", + "BPS-eng": "5270008", + "DURATION": "01:23:23.499000000", + "DURATION-eng": "01:23:23.499000000", + "NUMBER_OF_BYTES": "3296060047", + "NUMBER_OF_BYTES-eng": "3296060047", + "NUMBER_OF_FRAMES": "119964", + "NUMBER_OF_FRAMES-eng": "119964", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-06-30 19:38:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-30 19:38:46" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "01:23:23.520000000", + "DURATION-eng": "01:23:23.520000000", + "NUMBER_OF_BYTES": "140098560", + "NUMBER_OF_BYTES-eng": "140098560", + "NUMBER_OF_FRAMES": "156360", + "NUMBER_OF_FRAMES-eng": "156360", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-06-30 19:38:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-30 19:38:46", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Captive State (2019)/d2a61aef30294b68b62eaaf24c652fc6.mkv": { + "format": { + "bit_rate": "9997658", + "duration": "6574.283000", + "filename": "Captive State (2019)/d2a61aef30294b68b62eaaf24c652fc6.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8215929817", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-30T00:07:39.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8486143", + "BPS-eng": "8486143", + "DURATION": "01:49:34.276000000", + "DURATION-eng": "01:49:34.276000000", + "NUMBER_OF_BYTES": "6973781263", + "NUMBER_OF_BYTES-eng": "6973781263", + "NUMBER_OF_FRAMES": "157625", + "NUMBER_OF_FRAMES-eng": "157625", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-30 00:07:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-30 00:07:39", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:49:34.283000000", + "DURATION-eng": "01:49:34.283000000", + "NUMBER_OF_BYTES": "1240074136", + "NUMBER_OF_BYTES-eng": "1240074136", + "NUMBER_OF_FRAMES": "616339", + "NUMBER_OF_FRAMES-eng": "616339", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-30 00:07:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-30 00:07:39", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6574.283000", + "duration_ts": 6574283, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "46", + "BPS-eng": "46", + "DURATION": "01:45:13.932000000", + "DURATION-eng": "01:45:13.932000000", + "NUMBER_OF_BYTES": "36421", + "NUMBER_OF_BYTES-eng": "36421", + "NUMBER_OF_FRAMES": "1123", + "NUMBER_OF_FRAMES-eng": "1123", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-30 00:07:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-30 00:07:39", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Resident Evil (2002)/Resident Evil 1.avi": { + "format": { + "bit_rate": "1264508", + "duration": "6031.032000", + "filename": "Resident Evil (2002)/Resident Evil 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "953286656", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1133176", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6031.031031", + "duration_ts": 144600, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "144600", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "118624", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6031.032000", + "duration_ts": 251293, + "index": 1, + "nb_frames": "251293", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "A Beautiful Planet (2016)/185176d91e724c25a0b098635da126b3.mkv": { + "format": { + "bit_rate": "28848765", + "duration": "2777.149000", + "filename": "A Beautiful Planet (2016)/185176d91e724c25a0b098635da126b3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "10014665052", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-12-26T19:37:30.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 4, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24677122", + "DURATION-eng": "00:46:17.149000000", + "NUMBER_OF_BYTES-eng": "8566505606", + "NUMBER_OF_FRAMES-eng": "66585", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-26 19:37:30", + "title": "MPEG-4 AVC Video / 24996 kbps / 1080p / 23.976 fps / 16:9 / High Profile 4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4112043", + "DURATION-eng": "00:46:17.110000000", + "NUMBER_OF_BYTES-eng": "1427449560", + "NUMBER_OF_FRAMES-eng": "260354", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-26 19:37:30", + "language": "eng", + "title": "DTS:X/DTS-HD Master Audio / 7.1-X / 48 kHz / 4112 kbps / 24-bit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2777.149000", + "duration_ts": 2777149, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38602", + "DURATION-eng": "00:46:08.808000000", + "NUMBER_OF_BYTES-eng": "13360421", + "NUMBER_OF_FRAMES-eng": "1472", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-26 19:37:30", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2777.149000", + "duration_ts": 2777149, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44418", + "DURATION-eng": "00:44:34.464000000", + "NUMBER_OF_BYTES-eng": "14849462", + "NUMBER_OF_FRAMES-eng": "1572", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-26 19:37:30", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2777.149000", + "duration_ts": 2777149, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39699", + "DURATION-eng": "00:44:35.548000000", + "NUMBER_OF_BYTES-eng": "13277181", + "NUMBER_OF_FRAMES-eng": "1412", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-26 19:37:30", + "language": "spa" + }, + "time_base": "1/1000" + } + ] + }, + "Terminal (2018)/3e3f834589c94f4690b30813a8497a4c.mkv": { + "format": { + "bit_rate": "4899424", + "duration": "5743.238000", + "filename": "Terminal (2018)/3e3f834589c94f4690b30813a8497a4c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3517319802", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4257294", + "DURATION-eng": "01:35:43.238000000", + "NUMBER_OF_BYTES-eng": "3056331911", + "NUMBER_OF_FRAMES-eng": "137700", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:35:43.040000000", + "NUMBER_OF_BYTES-eng": "459443200", + "NUMBER_OF_FRAMES-eng": "179470", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5743.238000", + "duration_ts": 5743238, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "65", + "DURATION-eng": "01:33:54.796000000", + "NUMBER_OF_BYTES-eng": "46354", + "NUMBER_OF_FRAMES-eng": "1615", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5743.238000", + "duration_ts": 5743238, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "01:35:22.216000000", + "NUMBER_OF_BYTES-eng": "48388", + "NUMBER_OF_FRAMES-eng": "1746", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Edge Of Tomorrow (2014)/Edge.of.Tomorrow.2014.HEVC.1080p.BluRay.DTS.x265-LEGi0N.mkv": { + "format": { + "bit_rate": "6440331", + "duration": "6809.472000", + "filename": "Edge Of Tomorrow (2014)/Edge.of.Tomorrow.2014.HEVC.1080p.BluRay.DTS.x265-LEGi0N.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5481907484", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-07-20T15:16:31.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Edge.of.Tomorrow.2014.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 156, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4897279", + "DURATION-eng": "01:53:29.470000000", + "NUMBER_OF_BYTES-eng": "4168485029", + "NUMBER_OF_FRAMES-eng": "163264", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-20 15:16:31", + "language": "eng", + "title": "Edge.of.Tomorrow.2014.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1509000", + "DURATION-eng": "01:53:29.472000000", + "NUMBER_OF_BYTES-eng": "1284436772", + "NUMBER_OF_FRAMES-eng": "638388", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-20 15:16:31", + "language": "eng", + "title": "Edge.of.Tomorrow.2014.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6809.472000", + "duration_ts": 6809472, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31704", + "DURATION-eng": "01:53:11.618000000", + "NUMBER_OF_BYTES-eng": "26915969", + "NUMBER_OF_FRAMES-eng": "3026", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-20 15:16:31", + "language": "eng", + "title": "Edge.of.Tomorrow.2014.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + } + ] + }, + "Apollo 11 (2019)/6858f329a0224f9090910fac1fac85ae.mkv": { + "format": { + "bit_rate": "6722415", + "duration": "5581.243000", + "filename": "Apollo 11 (2019)/6858f329a0224f9090910fac1fac85ae.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4689929086", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-04T00:37:52.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 584, + "coded_width": 1280, + "display_aspect_ratio": "160:73", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 584, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5211391", + "DURATION-eng": "01:33:01.243000000", + "NUMBER_OF_BYTES-eng": "3635755296", + "NUMBER_OF_FRAMES-eng": "133816", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.0.0 ('A Little Bit of Madness') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-04 00:37:52", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1508999", + "DURATION-eng": "01:33:00.235000000", + "NUMBER_OF_BYTES-eng": "1052571764", + "NUMBER_OF_FRAMES-eng": "523147", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.0.0 ('A Little Bit of Madness') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-04 00:37:52", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Captain America Civil War (2016)/Captain America Civil War (2016) 720p IMAX Bluray AC3 x264 - AdiT.mkv": { + "format": { + "bit_rate": "3985092", + "duration": "8861.952000", + "filename": "Captain America Civil War (2016)/Captain America Civil War (2016) 720p IMAX Bluray AC3 x264 - AdiT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4414461872", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-09T11:13:37.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "Captain America Civil War (2016) 720p IMAX Bluray AC3 x264 - AdiT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3343188", + "BPS-eng": "3343188", + "DURATION": "02:27:41.937000000", + "DURATION-eng": "02:27:41.937000000", + "NUMBER_OF_BYTES": "3703390678", + "NUMBER_OF_BYTES-eng": "3703390678", + "NUMBER_OF_FRAMES": "212474", + "NUMBER_OF_FRAMES-eng": "212474", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-09-09 11:13:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-09-09 11:13:37", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:27:41.952000000", + "DURATION-eng": "02:27:41.952000000", + "NUMBER_OF_BYTES": "708956160", + "NUMBER_OF_BYTES-eng": "708956160", + "NUMBER_OF_FRAMES": "276936", + "NUMBER_OF_FRAMES-eng": "276936", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-09-09 11:13:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-09-09 11:13:37", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8861.952000", + "duration_ts": 8861952, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "02:20:37.700000000", + "DURATION-eng": "02:20:37.700000000", + "NUMBER_OF_BYTES": "1340", + "NUMBER_OF_BYTES-eng": "1340", + "NUMBER_OF_FRAMES": "61", + "NUMBER_OF_FRAMES-eng": "61", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-09-09 11:13:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-09-09 11:13:37", + "language": "eng", + "title": "Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8861.952000", + "duration_ts": 8861952, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "02:27:09.034000000", + "DURATION-eng": "02:27:09.034000000", + "NUMBER_OF_BYTES": "55695", + "NUMBER_OF_BYTES-eng": "55695", + "NUMBER_OF_FRAMES": "1867", + "NUMBER_OF_FRAMES-eng": "1867", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.0 ('Knurl') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-09-09 11:13:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-09-09 11:13:37", + "language": "eng", + "title": "Full" + }, + "time_base": "1/1000" + } + ] + }, + "Old School/Old School.avi": { + "format": { + "bit_rate": "1143344", + "duration": "5511.678345", + "filename": "Old School/Old School.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "787718144", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1020558", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5511.678345", + "duration_ts": 132148, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "132148", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "110088", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5511.216000", + "duration_ts": 229634, + "index": 1, + "nb_frames": "229634", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The 44Th President In His Own Words (2017)/the.44th.president.in.his.own.words.720p.web.h264-heat.mkv": { + "format": { + "bit_rate": "2626998", + "duration": "5184.298000", + "filename": "The 44Th President In His Own Words (2017)/the.44th.president.in.his.own.words.720p.web.h264-heat.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1702392831", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-16T10:00:14.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 0, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2496816", + "BPS-eng": "2496816", + "DURATION": "01:26:24.263000000", + "DURATION-eng": "01:26:24.263000000", + "NUMBER_OF_BYTES": "1618018918", + "NUMBER_OF_BYTES-eng": "1618018918", + "NUMBER_OF_FRAMES": "124298", + "NUMBER_OF_FRAMES-eng": "124298", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-16 10:00:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-16 10:00:14" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "127830", + "BPS-eng": "127830", + "DURATION": "01:26:24.298000000", + "DURATION-eng": "01:26:24.298000000", + "NUMBER_OF_BYTES": "82838873", + "NUMBER_OF_BYTES-eng": "82838873", + "NUMBER_OF_FRAMES": "243014", + "NUMBER_OF_FRAMES-eng": "243014", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 64bit built on Mar 28 2015 07:20:28", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-16 10:00:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-16 10:00:14" + }, + "time_base": "1/1000" + } + ] + }, + "Prometheus (2012)/Prometheus.2012.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "2081564", + "duration": "7425.685000", + "filename": "Prometheus (2012)/Prometheus.2012.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1932130735", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-09-20T18:21:41.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1985752", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7425.543125", + "duration_ts": 712852140, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "178035", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 12012, + "start_time": "0.125125", + "tags": { + "creation_time": "2012-09-20T18:21:41.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "91999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7425.685333", + "duration_ts": 356432896, + "index": 1, + "max_bit_rate": "101968", + "nb_frames": "348079", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-09-20T18:22:47.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Bolt (2008)/Bolt[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1017655", + "duration": "5780.196864", + "filename": "Bolt (2008)/Bolt[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735281152", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "880348", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 346, + "coded_width": 636, + "display_aspect_ratio": "318:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5780.196864", + "duration_ts": 138586, + "has_b_frames": 1, + "height": 346, + "index": 0, + "level": 5, + "nb_frames": "138586", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 636 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "240842", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Payback (1999)/Payback.1999.720p.BDRiP.x264.mkv": { + "format": { + "bit_rate": "3008835", + "duration": "6080.960000", + "filename": "Payback (1999)/Payback.1999.720p.BDRiP.x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2287075787", + "start_time": "0.078000", + "tags": { + "creation_time": "2018-06-11T15:05:18.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "2559402", + "BPS-eng": "2559402", + "DURATION": "01:41:19.991000000", + "DURATION-eng": "01:41:19.991000000", + "NUMBER_OF_BYTES": "1945142860", + "NUMBER_OF_BYTES-eng": "1945142860", + "NUMBER_OF_FRAMES": "145774", + "NUMBER_OF_FRAMES-eng": "145774", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-11 15:05:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-11 15:05:18", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:41:20.960000000", + "DURATION-eng": "01:41:20.960000000", + "NUMBER_OF_BYTES": "340533760", + "NUMBER_OF_BYTES-eng": "340533760", + "NUMBER_OF_FRAMES": "190030", + "NUMBER_OF_FRAMES-eng": "190030", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-11 15:05:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-11 15:05:18", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6080.960000", + "duration_ts": 6080960, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "BPS": "45", + "BPS-eng": "45", + "DURATION": "01:40:38.865000000", + "DURATION-eng": "01:40:38.865000000", + "NUMBER_OF_BYTES": "34160", + "NUMBER_OF_BYTES-eng": "34160", + "NUMBER_OF_FRAMES": "1243", + "NUMBER_OF_FRAMES-eng": "1243", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-11 15:05:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-11 15:05:18", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Black Cat White Cat (1998)/Black.Cat.White.Cat.1998.DVDRip.x264.AAC-NESMEURED.mp4": { + "format": { + "bit_rate": "1656336", + "duration": "7418.175000", + "filename": "Black Cat White Cat (1998)/Black.Cat.White.Cat.1998.DVDRip.x264.AAC-NESMEURED.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1535874088", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2014-07-22T15:09:53.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1460110", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 404, + "coded_width": 720, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "180:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7418.120000", + "duration_ts": 741812, + "has_b_frames": 2, + "height": 404, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "185453", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8, + "start_time": "0.080000", + "tags": { + "creation_time": "2014-07-22T15:06:08.000000Z", + "handler_name": "NESMEURED ENCODED", + "language": "und" + }, + "time_base": "1/100", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7418.176000", + "duration_ts": 356072448, + "index": 1, + "max_bit_rate": "204144", + "nb_frames": "347727", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-07-22T15:10:32.000000Z", + "handler_name": "NESMEURED ENCODED", + "language": "srp" + }, + "time_base": "1/48000" + } + ] + }, + "The Matrix Reloaded (2003)/24740224b9b94d8f835fcf7eab60d014.mkv": { + "format": { + "bit_rate": "10182790", + "duration": "8297.748000", + "filename": "The Matrix Reloaded (2003)/24740224b9b94d8f835fcf7eab60d014.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "10561779177", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French AC3 640kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English AC3 640kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8297.748000", + "duration_ts": 8297748, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + } + ] + }, + "Lost In Translation (2003)/Lost In Translation.2003.DVDRip.XviD.AC3[5.1]-VLiS.avi": { + "format": { + "bit_rate": "1999752", + "duration": "5850.040000", + "filename": "Lost In Translation (2003)/Lost In Translation.2003.DVDRip.XviD.AC3[5.1]-VLiS.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1462329344", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2542/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1542050", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5850.040000", + "duration_ts": 146251, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "146251", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "327600896", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Bad Boys II (2003)/Bad Boys 2 KLAXXON.avi": { + "format": { + "bit_rate": "1582177", + "duration": "8150.320000", + "filename": "Bad Boys II (2003)/Bad Boys 2 KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1611907072", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1124518", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 688, + "display_aspect_ratio": "43:18", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8150.320000", + "duration_ts": 203758, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "203758", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 688 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "456417920", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Virtuosity (1995)/Virtuosity.1995.1080p.BluRay.x264-CiNEFiLE.mkv": { + "format": { + "bit_rate": "10335393", + "duration": "6354.059000", + "filename": "Virtuosity (1995)/Virtuosity.1995.1080p.BluRay.x264-CiNEFiLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8208962575", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-07T20:19:37.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6354.059000", + "duration_ts": 6354059, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Willow (1988)/Willow 1988 720p HDTVRip [A Cryptik Visions H264].mp4": { + "format": { + "bit_rate": "2253879", + "duration": "7630.580000", + "filename": "Willow (1988)/Willow 1988 720p HDTVRip [A Cryptik Visions H264].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2149800973", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-08-18T08:58:19.000000Z", + "encoder": "Yamb 2.1.0.0 [http://yamb.unite-video.com]", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1828854", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7630.581292", + "duration_ts": 183133951, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "182951", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2011-08-18T08:58:19.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127994", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7542.186667", + "duration_ts": 362024960, + "index": 1, + "max_bit_rate": "153056", + "nb_frames": "353540", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-18T08:59:30.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "296423", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7542.186667", + "duration_ts": 362024960, + "index": 2, + "max_bit_rate": "362512", + "nb_frames": "353540", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-18T08:59:36.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Office Uprising (2018)/4e78f925071c480d939e4570bf09bea6.mkv": { + "format": { + "bit_rate": "7063633", + "duration": "5311.051000", + "filename": "Office Uprising (2018)/4e78f925071c480d939e4570bf09bea6.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4689414431", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-10T15:22:26.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5552257", + "BPS-eng": "5552257", + "DURATION": "01:28:31.042000000", + "DURATION-eng": "01:28:31.042000000", + "NUMBER_OF_BYTES": "3686033841", + "NUMBER_OF_BYTES-eng": "3686033841", + "NUMBER_OF_FRAMES": "127465", + "NUMBER_OF_FRAMES-eng": "127465", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.9.0 ('Birds') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.9.0 ('Birds') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-10 15:22:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-10 15:22:26", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:28:31.051000000", + "DURATION-eng": "01:28:31.051000000", + "NUMBER_OF_BYTES": "1001796932", + "NUMBER_OF_BYTES-eng": "1001796932", + "NUMBER_OF_FRAMES": "497911", + "NUMBER_OF_FRAMES-eng": "497911", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.9.0 ('Birds') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.9.0 ('Birds') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-10 15:22:26", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-10 15:22:26", + "language": "eng", + "title": "DTS" + }, + "time_base": "1/1000" + } + ] + }, + "Bambi (1942)/Bambi[1942]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1444453", + "duration": "4060.040000", + "filename": "Bambi (1942)/Bambi[1942]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733067264", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1242782", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 376, + "coded_width": 520, + "display_aspect_ratio": "65:47", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4060.040000", + "duration_ts": 101501, + "has_b_frames": 1, + "height": 376, + "index": 0, + "level": 5, + "nb_frames": "101501", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 520 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "97425119", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Apocalypse Now Redux/Apocalypse Now Redux.m4v": { + "format": { + "bit_rate": "1860374", + "duration": "12153.882700", + "filename": "Apocalypse Now Redux/Apocalypse Now Redux.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2826346459", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-22T21:43:47.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1654865763/69007196", + "bit_rate": "1242021", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "34503598/1654865763", + "codec_type": "video", + "coded_height": 432, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "107:54", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "12153.882700", + "duration_ts": 1093849443, + "has_b_frames": 1, + "height": 432, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "291463", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "107:90", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T21:43:47.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165879", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "12142.016000", + "duration_ts": 582816768, + "index": 1, + "max_bit_rate": "273512", + "nb_frames": "569157", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T21:43:47.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "12141.984000", + "duration_ts": 582815232, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "379437", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T21:43:47.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "I'm Gonna Git You Sucka/I'm Gonna Git You Sucka.avi": { + "format": { + "bit_rate": "1104108", + "duration": "5311.514542", + "filename": "I'm Gonna Git You Sucka/I'm Gonna Git You Sucka.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733061120", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "966751", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 448, + "coded_width": 624, + "display_aspect_ratio": "39:28", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5311.514542", + "duration_ts": 127349, + "has_b_frames": 1, + "height": 448, + "index": 0, + "level": 5, + "nb_frames": "127349", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "221313", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "In the Line of Fire (1993)/In.the.Line.of.Fire.1993.DVDRip.XviD.AC3[5.1].AR.cd2.avi": { + "format": { + "bit_rate": "1541128", + "duration": "3810.765292", + "filename": "In the Line of Fire (1993)/In.the.Line.of.Fire.1993.DVDRip.XviD.AC3[5.1].AR.cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734109696", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1091461", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 704, + "display_aspect_ratio": "44:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3810.765292", + "duration_ts": 91367, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "91367", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "212704212", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Sintel (2010)/Sintel.2010.2K.SURROUND.x264-VODO.mp4": { + "format": { + "bit_rate": "4174091", + "duration": "888.064000", + "filename": "Sintel (2010)/Sintel.2010.2K.SURROUND.x264-VODO.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "463357580", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "copyright": "(c) Copyright 2010 Blender Foundation, all rights reserved", + "creation_time": "1970-01-01T00:00:00.000000Z", + "description": "Sintel open movie project", + "encoder": "Lavf52.78.5", + "major_brand": "isom", + "minor_version": "512", + "title": "Sintel" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bit_rate": "3727627", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 872, + "coded_width": 2048, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "888.000000", + "duration_ts": 21312, + "has_b_frames": 2, + "height": 872, + "index": 0, + "is_avc": "true", + "level": 50, + "nal_length_size": "4", + "nb_frames": "21312", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/24", + "width": 2048 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "440754", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "888.064000", + "duration_ts": 42627072, + "index": 1, + "max_bit_rate": "440754", + "nb_frames": "41628", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Cronos (1993)/Cronos KLAXXON.avi": { + "format": { + "bit_rate": "1582706", + "duration": "5194.400000", + "filename": "Cronos (1993)/Cronos KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1027651584", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1125048", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 592, + "display_aspect_ratio": "37:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5194.400000", + "duration_ts": 129860, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "129860", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "290886400", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Fantasia (1940)/Fantasia.mp4": { + "format": { + "bit_rate": "2155517", + "duration": "7467.613333", + "filename": "Fantasia (1940)/Fantasia.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2012071480", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2013-01-21T09:24:07.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "860265600/35844343", + "bit_rate": "1995453", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "35844343/1720531200", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7467.583333", + "duration_ts": 179222000, + "has_b_frames": 0, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "179222", + "pix_fmt": "yuv420p", + "profile": "Baseline", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-22T08:38:33.000000Z", + "encoder": "AVC Coding", + "handler_name": "Mainconcept MP4 Video Media Handler", + "language": "eng" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "157375", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7467.614521", + "duration_ts": 358445497, + "index": 1, + "max_bit_rate": "163496", + "nb_frames": "350045", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-21T09:27:12.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "PNG (Portable Network Graphics) image", + "codec_name": "png", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 468, + "coded_width": 300, + "color_range": "pc", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7467.613333", + "duration_ts": 672085200, + "has_b_frames": 0, + "height": 468, + "index": 2, + "level": -99, + "pix_fmt": "rgba", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 300 + } + ] + }, + "Star Wars Episode VIII - The Last Jedi (2017)/Star.Wars.Episode.8.VIII.The.Last.Jedi.2017.1080p.BluRay.DTS.x264-CyTSuNee.mkv": { + "format": { + "bit_rate": "11604708", + "duration": "9111.603000", + "filename": "Star Wars Episode VIII - The Last Jedi (2017)/Star.Wars.Episode.8.VIII.The.Last.Jedi.2017.1080p.BluRay.DTS.x264-CyTSuNee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "13217186870", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-04-15T18:49:37.000000Z", + "encoder": "libebml v0.7.9 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9111.603000", + "duration_ts": 9111603, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Hamlet (1990)/Hamlet KLAXXON.avi": { + "format": { + "bit_rate": "1320421", + "duration": "7611.920000", + "filename": "Hamlet (1990)/Hamlet KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1256368128", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1118766", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7611.920000", + "duration_ts": 190298, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "190298", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "182686080", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Daughter Of The Wolf (2019)/ad5d85a3082d4c5bab055cccc3fcdfba.mkv": { + "format": { + "bit_rate": "8226799", + "duration": "5292.096000", + "filename": "Daughter Of The Wolf (2019)/ad5d85a3082d4c5bab055cccc3fcdfba.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5442126539", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-14T08:04:25.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7584732", + "DURATION-eng": "01:28:12.079000000", + "NUMBER_OF_BYTES-eng": "5017375687", + "NUMBER_OF_FRAMES-eng": "126883", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-14 08:04:25" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:28:12.096000000", + "NUMBER_OF_BYTES-eng": "423367680", + "NUMBER_OF_FRAMES-eng": "165378", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-14 08:04:25", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5292.096000", + "duration_ts": 5292096, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "20", + "DURATION-eng": "01:17:22.377000000", + "NUMBER_OF_BYTES-eng": "11806", + "NUMBER_OF_FRAMES-eng": "524", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-14 08:04:25", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5292.096000", + "duration_ts": 5292096, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22", + "DURATION-eng": "01:22:35.516000000", + "NUMBER_OF_BYTES-eng": "13689", + "NUMBER_OF_FRAMES-eng": "649", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-14 08:04:25", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Usual Suspects/The Usual Suspects.mp4": { + "format": { + "bit_rate": "685689", + "duration": "6357.928233", + "filename": "The Usual Suspects/The Usual Suspects.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "544945812", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T21:40:03.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1840357817/76754652", + "bit_rate": "548212", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "38377326/1840357817", + "codec_type": "video", + "coded_height": 274, + "coded_width": 718, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "2872:1233", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6357.928233", + "duration_ts": 572213541, + "has_b_frames": 1, + "height": 274, + "index": 0, + "is_avc": "true", + "level": 22, + "nal_length_size": "4", + "nb_frames": "152445", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "8:9", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T21:40:03.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132408", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6357.888000", + "duration_ts": 305178624, + "index": 1, + "max_bit_rate": "202392", + "nb_frames": "298026", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T21:40:03.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Independence Day Resurgence (2016)/Independence.Day.Resurgence.2016.MULTi.VFF.720p.mHD.x264.AC3-SVR.mkv": { + "format": { + "bit_rate": "3242603", + "duration": "6889.984000", + "filename": "Independence Day Resurgence (2016)/Independence.Day.Resurgence.2016.MULTi.VFF.720p.mHD.x264.AC3-SVR.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2792685383", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "display_aspect_ratio": "16256:6783", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "254:255", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:54:49.920000000", + "ENCODER": "Lavc57.64.100 libx264", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:54:49.984000000", + "language": "eng", + "title": "Surround 5.1 448 kbps" + }, + "time_base": "1/1000" + } + ] + }, + "Blood Diamond/Blood Diamond.avi": { + "format": { + "bit_rate": "878128", + "duration": "8599.557891", + "filename": "Blood Diamond/Blood Diamond.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943939584", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "756821", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 250, + "coded_width": 612, + "display_aspect_ratio": "306:125", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8599.557891", + "duration_ts": 206183, + "has_b_frames": 1, + "height": 250, + "index": 0, + "level": 5, + "nb_frames": "206183", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 612 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "358315", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Inglourious Basterds (2009)/Inglourious Basterds (2009) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi": { + "format": { + "bit_rate": "1275631", + "duration": "9192.531360", + "filename": "Inglourious Basterds (2009)/Inglourious Basterds (2009) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1465785852", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "884077", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "104271/2500000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9192.531360", + "duration_ts": 220400, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "220400", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "104271/2500000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "440622886", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Underworld Blood Wars (2017)/Underworld.Blood.Wars.2017.720p.WEB-DL.H264.AC3-EVO.mkv": { + "format": { + "bit_rate": "4460599", + "duration": "5509.760000", + "filename": "Underworld Blood Wars (2017)/Underworld.Blood.Wars.2017.720p.WEB-DL.H264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3072104242", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-09T00:29:26.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 530, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "128:53", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 530, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Aristocrats/aristocrats-fico.avi": { + "format": { + "bit_rate": "1105464", + "duration": "5303.712000", + "filename": "The Aristocrats/aristocrats-fico.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732882944", + "start_time": "0.000000", + "tags": { + "IAS1": "Unknown language", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "961162", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 432, + "coded_width": 576, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5303.703704", + "duration_ts": 158952, + "has_b_frames": 1, + "height": 432, + "index": 0, + "level": 5, + "nb_frames": "158952", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130416", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5303.712000", + "duration_ts": 220988, + "index": 1, + "nb_frames": "220988", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Heavy Metal (1981)/Heavy Metal (1981).avi": { + "format": { + "bit_rate": "1062073", + "duration": "5421.338005", + "filename": "Heavy Metal (1981)/Heavy Metal (1981).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "719732736", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "922287", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 592, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5421.338005", + "duration_ts": 129982, + "has_b_frames": 0, + "height": 320, + "index": 0, + "level": -99, + "nb_frames": "129982", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127992", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5421.270204", + "duration_ts": 207533, + "index": 1, + "nb_frames": "207533", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "The Wind Rises (2013)/The Wind Rises (2013) 1080p [Jpn & Eng] Blu-ray (Studio Ghibli) English.mp4": { + "format": { + "bit_rate": "2652328", + "duration": "7591.166667", + "filename": "The Wind Rises (2013)/The Wind Rises (2013) 1080p [Jpn & Eng] Blu-ray (Studio Ghibli) English.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2516783554", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-07-24T05:11:11.000000Z", + "hd_video": "2", + "major_brand": "isom", + "media_type": "0", + "minor_version": "1", + "title": "The Wind Rises (2013) 1080p [Jpn & Eng] Blu-ray (Studio Ghibli) English" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2320444", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7591.166917", + "duration_ts": 182188006, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "182006", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-07-24T05:11:11.000000Z", + "language": "jpn" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7590.250667", + "duration_ts": 364332032, + "index": 1, + "max_bit_rate": "161560", + "nb_frames": "355793", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-07-24T05:11:51.000000Z", + "language": "jpn" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7590.250667", + "duration_ts": 364332032, + "index": 2, + "max_bit_rate": "160712", + "nb_frames": "355793", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-07-24T05:12:02.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 404, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "101:150", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7591.166667", + "duration_ts": 683205000, + "has_b_frames": 0, + "height": 600, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 404 + } + ] + }, + "The Comedian (2017)/blow-the.comedian.2016.720p.bluray.x264.mkv": { + "format": { + "bit_rate": "6515847", + "duration": "7196.192000", + "filename": "The Comedian (2017)/blow-the.comedian.2016.720p.bluray.x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5861160802", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-16T00:38:01.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7196.192000", + "duration_ts": 7196192, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English regular" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7196.192000", + "duration_ts": 7196192, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English sdh" + }, + "time_base": "1/1000" + } + ] + }, + "Kiss Kiss Bang Bang (2005)/Kiss.Kiss.Bang.Bang.2005.m-720p.AC3.x264~RKO.mkv": { + "format": { + "bit_rate": "2321515", + "duration": "6162.400000", + "filename": "Kiss Kiss Bang Bang (2005)/Kiss.Kiss.Bang.Bang.2005.m-720p.AC3.x264~RKO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "1788263365", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-07-03T07:45:20.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Kiss.Kiss.Bang.Bang.2005.m-720p.AC3.x264~RKO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "88:89", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "320000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6162.400000", + "duration_ts": 6162400, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Austin Powers - International Man of Mystery (1997)/Austin Powers I - International Man Of Mystery.avi": { + "format": { + "bit_rate": "981555", + "duration": "5371.996997", + "filename": "Austin Powers - International Man of Mystery (1997)/Austin Powers I - International Man Of Mystery.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "659113984", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "854969", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5371.996997", + "duration_ts": 128799, + "has_b_frames": 0, + "height": 320, + "index": 0, + "level": -99, + "nb_frames": "128799", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113904", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5370.768000", + "duration_ts": 223782, + "index": 1, + "nb_frames": "223782", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Louis C K Live At The Beacon Theater (2011)/2bb4d549daaa42f0b530604058927914.mkv": { + "format": { + "bit_rate": "3771911", + "duration": "3757.421000", + "filename": "Louis C K Live At The Beacon Theater (2011)/2bb4d549daaa42f0b530604058927914.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1771582301", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-12T00:22:12.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3641828", + "BPS-eng": "3641828", + "DURATION": "01:02:37.421000000", + "DURATION-eng": "01:02:37.421000000", + "NUMBER_OF_BYTES": "1710485335", + "NUMBER_OF_BYTES-eng": "1710485335", + "NUMBER_OF_FRAMES": "90088", + "NUMBER_OF_FRAMES-eng": "90088", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-12 00:22:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-12 00:22:12" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "01:02:37.088000000", + "DURATION-eng": "01:02:37.088000000", + "NUMBER_OF_BYTES": "60113408", + "NUMBER_OF_BYTES-eng": "60113408", + "NUMBER_OF_FRAMES": "117409", + "NUMBER_OF_FRAMES-eng": "117409", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-12 00:22:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-12 00:22:12", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3757.421000", + "duration_ts": 3757421, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "95", + "BPS-eng": "95", + "DURATION": "01:00:21.201000000", + "DURATION-eng": "01:00:21.201000000", + "NUMBER_OF_BYTES": "43148", + "NUMBER_OF_BYTES-eng": "43148", + "NUMBER_OF_FRAMES": "2035", + "NUMBER_OF_FRAMES-eng": "2035", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-12 00:22:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-12 00:22:12", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Kevin Smith Silent But Deadly (2018)/738d461b61804e2bb4abf606de16f24b.mkv": { + "format": { + "bit_rate": "7691468", + "duration": "3454.880000", + "filename": "Kevin Smith Silent But Deadly (2018)/738d461b61804e2bb4abf606de16f24b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3321637419", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-05-13T18:53:39.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7305637", + "BPS-eng": "7305637", + "DURATION": "00:57:34.868000000", + "DURATION-eng": "00:57:34.868000000", + "NUMBER_OF_BYTES": "3155001540", + "NUMBER_OF_BYTES-eng": "3155001540", + "NUMBER_OF_FRAMES": "82834", + "NUMBER_OF_FRAMES-eng": "82834", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-13 18:53:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-13 18:53:39" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "00:57:34.880000000", + "DURATION-eng": "00:57:34.880000000", + "NUMBER_OF_BYTES": "165834240", + "NUMBER_OF_BYTES-eng": "165834240", + "NUMBER_OF_FRAMES": "107965", + "NUMBER_OF_FRAMES-eng": "107965", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-13 18:53:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-13 18:53:39" + }, + "time_base": "1/1000" + } + ] + }, + "Blade Runner (1982)/Blade Runner Final Cut.mkv": { + "format": { + "bit_rate": "9664005", + "duration": "7056.864000", + "filename": "Blade Runner (1982)/Blade Runner Final Cut.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "8524696297", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-12-24T12:31:05.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Blade Runner Final Cut " + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita", + "title": "AC3 @ 640 Kb/s" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "AC3 @ 640 Kb/s" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7056.864000", + "duration_ts": 7056864, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7056.864000", + "duration_ts": 7056864, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7056.864000", + "duration_ts": 7056864, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "hearing impaired" + }, + "time_base": "1/1000" + } + ] + }, + "Amistad/Amistad Part 1.avi": { + "format": { + "bit_rate": "1272346", + "duration": "4617.070792", + "filename": "Amistad/Amistad Part 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734314496", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "817631", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 624, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4617.070792", + "duration_ts": 110699, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "110699", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "258555964", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "V For Vendetta (2006)/V.For.Vendetta.2006.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1080688", + "duration": "7952.106667", + "filename": "V For Vendetta (2006)/V.For.Vendetta.2006.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1074219135", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2011-12-31T23:04:37.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64494", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7609.173333", + "duration_ts": 365240320, + "index": 0, + "max_bit_rate": "73048", + "nb_frames": "356680", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-12-31T23:04:37.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "56377", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7952.106667", + "duration_ts": 381701120, + "index": 1, + "max_bit_rate": "82056", + "nb_frames": "372755", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-12-31T23:04:44.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "fre" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1000427", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7609.101500", + "duration_ts": 182618436, + "has_b_frames": 2, + "height": 544, + "index": 2, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "182436", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-12-31T23:04:52.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Mallrats/Mallrats.mkv": { + "format": { + "bit_rate": "2385364", + "duration": "5724.518000", + "filename": "Mallrats/Mallrats.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1706882526", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 464, + "coded_width": 710, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "70645:38976", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "199:168", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 710 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Fantastic Beasts And Where To Find Them (2016)/fantastic.beasts.and.where.to.find.them.2016.720p.bluray.x264.dts-evo.mkv": { + "format": { + "bit_rate": "3946818", + "duration": "7972.340000", + "filename": "Fantastic Beasts And Where To Find Them (2016)/fantastic.beasts.and.where.to.find.them.2016.720p.bluray.x264.dts-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3933172306", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:12:52.340000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:12:52.329000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Dark Knight (2008)/The.Dark.Knight.2008.720p.nHD.x264-NhaNc3.mkv": { + "format": { + "bit_rate": "2062411", + "duration": "9133.312000", + "filename": "The Dark Knight (2008)/The.Dark.Knight.2008.720p.nHD.x264-NhaNc3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2354581495", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-12-13T14:11:15.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 720, + "coded_width": 960, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "4:3", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Mr Dynamite The Rise Of James Brown (2014)/mr.dynamite.the.rise.of.james.brown.2014.720p.bluray.x264-ghouls.mkv": { + "format": { + "bit_rate": "6491768", + "duration": "7231.224000", + "filename": "Mr Dynamite The Rise Of James Brown (2014)/mr.dynamite.the.rise.of.james.brown.2014.720p.bluray.x264-ghouls.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5867928768", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-01T21:48:54.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "Star Trek (2009)/Star Trek.mp4": { + "format": { + "bit_rate": "2351426", + "duration": "7610.303333", + "filename": "Star Trek (2009)/Star Trek.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2236883731", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2009-09-30T20:59:36.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "1909864", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7610.239786", + "duration_ts": 509071770, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "182463", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 5580, + "start_time": "0.083417", + "tags": { + "creation_time": "2009-09-30T11:41:34.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "437848", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7610.304000", + "duration_ts": 365294592, + "index": 1, + "max_bit_rate": "538672", + "nb_frames": "356733", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-30T21:00:42.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Shrek The Third (2007)/Shrek.The.Third.2007.BluRay.810p.AC3.x264-PRoDJi.dual.mkv": { + "format": { + "bit_rate": "6754153", + "duration": "5563.984000", + "filename": "Shrek The Third (2007)/Shrek.The.Third.2007.BluRay.810p.AC3.x264-PRoDJi.dual.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 12, + "probe_score": 100, + "size": "4697500408", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-04T09:26:24.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 810, + "coded_width": 1440, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 810, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5471279", + "BPS-eng": "5471279", + "DURATION": "01:32:43.984000000", + "DURATION-eng": "01:32:43.984000000", + "NUMBER_OF_BYTES": "3805263769", + "NUMBER_OF_BYTES-eng": "3805263769", + "NUMBER_OF_FRAMES": "133402", + "NUMBER_OF_FRAMES-eng": "133402", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "eng", + "title": "@5463Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:32:43.008000000", + "DURATION-eng": "01:32:43.008000000", + "NUMBER_OF_BYTES": "445040640", + "NUMBER_OF_BYTES-eng": "445040640", + "NUMBER_OF_FRAMES": "173844", + "NUMBER_OF_FRAMES-eng": "173844", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "eng", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "01:24:21.085000000", + "DURATION-eng": "01:24:21.085000000", + "NUMBER_OF_BYTES": "35370", + "NUMBER_OF_BYTES-eng": "35370", + "NUMBER_OF_FRAMES": "1091", + "NUMBER_OF_FRAMES-eng": "1091", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "01:21:24.900000000", + "DURATION-eng": "01:21:24.900000000", + "NUMBER_OF_BYTES": "35087", + "NUMBER_OF_BYTES-eng": "35087", + "NUMBER_OF_FRAMES": "1028", + "NUMBER_OF_FRAMES-eng": "1028", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "58", + "BPS-eng": "58", + "DURATION": "01:21:23.797000000", + "DURATION-eng": "01:21:23.797000000", + "NUMBER_OF_BYTES": "35546", + "NUMBER_OF_BYTES-eng": "35546", + "NUMBER_OF_FRAMES": "902", + "NUMBER_OF_FRAMES-eng": "902", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "56", + "BPS-eng": "56", + "DURATION": "01:24:21.085000000", + "DURATION-eng": "01:24:21.085000000", + "NUMBER_OF_BYTES": "35626", + "NUMBER_OF_BYTES-eng": "35626", + "NUMBER_OF_FRAMES": "1091", + "NUMBER_OF_FRAMES-eng": "1091", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "105", + "BPS-eng": "105", + "DURATION": "01:22:28.861000000", + "DURATION-eng": "01:22:28.861000000", + "NUMBER_OF_BYTES": "65550", + "NUMBER_OF_BYTES-eng": "65550", + "NUMBER_OF_FRAMES": "1185", + "NUMBER_OF_FRAMES-eng": "1185", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "32", + "BPS-eng": "32", + "DURATION": "01:31:35.200000000", + "DURATION-eng": "01:31:35.200000000", + "NUMBER_OF_BYTES": "22533", + "NUMBER_OF_BYTES-eng": "22533", + "NUMBER_OF_FRAMES": "982", + "NUMBER_OF_FRAMES-eng": "982", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "39", + "BPS-eng": "39", + "DURATION": "01:21:59.529000000", + "DURATION-eng": "01:21:59.529000000", + "NUMBER_OF_BYTES": "24273", + "NUMBER_OF_BYTES-eng": "24273", + "NUMBER_OF_FRAMES": "1015", + "NUMBER_OF_FRAMES-eng": "1015", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "srp" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "56", + "BPS-eng": "56", + "DURATION": "01:21:34.454000000", + "DURATION-eng": "01:21:34.454000000", + "NUMBER_OF_BYTES": "34344", + "NUMBER_OF_BYTES-eng": "34344", + "NUMBER_OF_FRAMES": "969", + "NUMBER_OF_FRAMES-eng": "969", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5563.984000", + "duration_ts": 5563984, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "49", + "BPS-eng": "49", + "DURATION": "01:21:24.300000000", + "DURATION-eng": "01:21:24.300000000", + "NUMBER_OF_BYTES": "30470", + "NUMBER_OF_BYTES-eng": "30470", + "NUMBER_OF_FRAMES": "692", + "NUMBER_OF_FRAMES-eng": "692", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 11, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:32:42.944000000", + "DURATION-eng": "01:32:42.944000000", + "NUMBER_OF_BYTES": "445035520", + "NUMBER_OF_BYTES-eng": "445035520", + "NUMBER_OF_FRAMES": "173842", + "NUMBER_OF_FRAMES-eng": "173842", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:26:24", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:26:24", + "language": "tur", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + } + ] + }, + "Predator 1/Predator 1.avi": { + "format": { + "bit_rate": "1536661", + "duration": "6392.232000", + "filename": "Predator 1/Predator 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1227837440", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1406955", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6392.225559", + "duration_ts": 153260, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "153260", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "117000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6392.232000", + "duration_ts": 266343, + "index": 1, + "nb_frames": "266343", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Matrix (1999)/de8729b8556247d48a5553507dd8f733.mkv": { + "format": { + "bit_rate": "12616686", + "duration": "8177.955000", + "filename": "The Matrix (1999)/de8729b8556247d48a5553507dd8f733.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 18, + "probe_score": 100, + "size": "12897336691", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-07-27T07:39:19.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 798, + "coded_width": 1920, + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 798, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "1080p @ 10.9 Mbps" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "5.1 DTS @ 1536 kbps - Feature Audio Track" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "2.0 Vorbis @ 64 kbps - Special Effects Arist Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "2.0 Vorbis @ 64 kbps - Film Critics' Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 4, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "2.0 Vorbis @ 64 kbps - Philosophers' Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 5, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "2.0 Vorbis @ 64 kbps - The Making of The Matrix Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8177.955000", + "duration_ts": 8177955, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "bul" + }, + "time_base": "1/1000" + } + ] + }, + "Lost Highway/Lost Highway.avi": { + "format": { + "bit_rate": "730491", + "duration": "8042.000334", + "filename": "Lost Highway/Lost Highway.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734326784", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "592949", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8042.000334", + "duration_ts": 192815, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 5, + "nb_frames": "192815", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124792", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8041.992000", + "duration_ts": 335083, + "index": 1, + "nb_frames": "335083", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Final Fantasy - The Spirits Within/Final Fantasy - The Spirits Within.mkv": { + "format": { + "bit_rate": "2253606", + "duration": "6359.278000", + "filename": "Final Fantasy - The Spirits Within/Final Fantasy - The Spirits Within.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1791413880", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 472, + "coded_width": 712, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "13172:7375", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 472, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "148:125", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 712 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Jupiter Ascending (2015)/Jupiter.Ascending.2015.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2189293", + "duration": "7654.400000", + "filename": "Jupiter Ascending (2015)/Jupiter.Ascending.2015.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2094715922", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-05-05T06:19:44.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2091455", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7654.229917", + "duration_ts": 183701518, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "183518", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-05-05T06:19:44.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93781", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7654.400000", + "duration_ts": 367411200, + "index": 1, + "max_bit_rate": "102616", + "nb_frames": "358800", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-05-05T06:19:56.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Boiler Room/Boiler Room.avi": { + "format": { + "bit_rate": "1698693", + "duration": "6913.400000", + "filename": "Boiler Room/Boiler Room.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1467968594", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-0.6.14" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1282180", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 656, + "display_aspect_ratio": "41:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6913.400000", + "duration_ts": 172835, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "172835", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "193000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6901.440000", + "duration_ts": 287560, + "index": 1, + "nb_frames": "287560", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "205000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6901.440000", + "duration_ts": 287560, + "index": 2, + "nb_frames": "287560", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Rushmore (1998)/Rushmore (AC3-6ch) (2of2).avi": { + "format": { + "bit_rate": "2140734", + "duration": "2751.665583", + "filename": "Rushmore (1998)/Rushmore (AC3-6ch) (2of2).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736323080", + "start_time": "0.000000", + "tags": { + "artist": "theJABBERWOCK", + "title": "Rushmore (AC3-6ch) (2of2)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1747476", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "2751.665583", + "duration_ts": 65974, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": -99, + "nb_frames": "65974", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "132076601", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Game Night (2018)/Game.Night.2018.1080p.WEB-DL.DD5.1.x264.NLSubs.mkv": { + "format": { + "bit_rate": "4962820", + "duration": "6005.961000", + "filename": "Game Night (2018)/Game.Night.2018.1080p.WEB-DL.DD5.1.x264.NLSubs.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3725813207", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-05-04T05:58:08.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6005.961000", + "duration_ts": 6005961, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "QoQ-Team" + }, + "time_base": "1/1000" + } + ] + }, + "Fist Fight (2017)/Fist.Fight.2017.HDTS.NO-JERKYNESS.READNFO.700MB.x264-DiRG.mp4": { + "format": { + "bit_rate": "1174432", + "duration": "5029.739000", + "filename": "Fist Fight (2017)/Fist.Fight.2017.HDTS.NO-JERKYNESS.READNFO.700MB.x264-DiRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "738385837", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "encoder": "Lavf56.32.100", + "major_brand": "isom", + "minor_version": "512" + } + }, + "streams": [ + { + "avg_frame_rate": "2048237213/68274565", + "bit_rate": "1067120", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "6100579/366034787", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "display_aspect_ratio": "45:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5029.733000", + "duration_ts": 80475728, + "has_b_frames": 2, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "150892", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/16000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96005", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5029.748000", + "duration_ts": 241427904, + "index": 1, + "max_bit_rate": "96005", + "nb_frames": "235769", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 432, + "start_time": "0.009000", + "tags": { + "handler_name": "SoundHandler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Last Boy Scout (1991)/The.Last.Boy.Scout.1991.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "7417842", + "duration": "6324.986000", + "filename": "The Last Boy Scout (1991)/The.Last.Boy.Scout.1991.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5864718610", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "34240:14271", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "214:213", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:45:24.986000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:45:24.981000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Rumble in the Air-Conditioned Auditorium: O'Reilly vs. Stewart 2012/The Rumble 2012 - Jon Stewart vs Bill O'Reilly.mp4": { + "format": { + "bit_rate": "459117", + "duration": "5587.166667", + "filename": "The Rumble in the Air-Conditioned Auditorium: O'Reilly vs. Stewart 2012/The Rumble 2012 - Jon Stewart vs Bill O'Reilly.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "320645843", + "start_time": "0.000000", + "tags": { + "artist": "The Rumble 2012", + "artist-eng": "The Rumble 2012", + "comment": "The Rumble 2012", + "comment-eng": "The Rumble 2012", + "compatible_brands": "qt ", + "copyright": "Straight Talk, Inc./Busboy Productions, Inc. All rights reserved", + "copyright-eng": "Straight Talk, Inc./Busboy Productions, Inc. All rights reserved", + "creation_time": "2012-10-07T00:00:00.000000Z", + "major_brand": "qt ", + "minor_version": "537199360", + "title": "The Rumble 2012", + "title-eng": "The Rumble 2012" + } + }, + "streams": [ + { + "avg_frame_rate": "602034/33523", + "bit_rate": "358359", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "33523/1204068", + "codec_type": "video", + "coded_height": 540, + "coded_width": 960, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5587.166667", + "duration_ts": 16761500, + "has_b_frames": 0, + "height": 540, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "100339", + "pix_fmt": "yuv420p", + "profile": "Baseline", + "r_frame_rate": "30/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-10-07T00:00:00.000000Z", + "handler_name": "Apple Alias Data Handler", + "language": "eng" + }, + "time_base": "1/3000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5587.165011", + "duration_ts": 246393977, + "index": 1, + "max_bit_rate": "96000", + "nb_frames": "240622", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-10-07T00:00:00.000000Z", + "handler_name": "Apple Alias Data Handler", + "language": "eng" + }, + "time_base": "1/44100" + } + ] + }, + "The Switch (2010)/The.Switch.2010.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "9603700", + "duration": "6083.123000", + "filename": "The Switch (2010)/The.Switch.2010.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7302561224", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "", + "ENCODER": "Lavf55.12.0", + "title": "The Switch (2010).Title1.BlurayRip" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "LANGUAGE": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Safe House (2012)/0000a9e7f5ce4d5cb8aadf7e857ef58f.mkv": { + "format": { + "bit_rate": "8593869", + "duration": "6894.675000", + "filename": "Safe House (2012)/0000a9e7f5ce4d5cb8aadf7e857ef58f.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 33, + "probe_score": 100, + "size": "7406492175", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-02-04T19:07:54.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Safe House" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7024681", + "BPS-eng": "7024681", + "DURATION": "01:54:54.555000000", + "DURATION-eng": "01:54:54.555000000", + "NUMBER_OF_BYTES": "6054006702", + "NUMBER_OF_BYTES-eng": "6054006702", + "NUMBER_OF_FRAMES": "165304", + "NUMBER_OF_FRAMES-eng": "165304", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS": "564329", + "BPS-eng": "564329", + "DURATION": "01:54:54.549000000", + "DURATION-eng": "01:54:54.549000000", + "NUMBER_OF_BYTES": "486349795", + "NUMBER_OF_BYTES-eng": "486349795", + "NUMBER_OF_FRAMES": "323182", + "NUMBER_OF_FRAMES-eng": "323182", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "191999", + "BPS-eng": "191999", + "DURATION": "01:54:54.592000000", + "DURATION-eng": "01:54:54.592000000", + "NUMBER_OF_BYTES": "165470130", + "NUMBER_OF_BYTES-eng": "165470130", + "NUMBER_OF_FRAMES": "161592", + "NUMBER_OF_FRAMES-eng": "161592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "191999", + "BPS-eng": "191999", + "DURATION": "01:54:54.592000000", + "DURATION-eng": "01:54:54.592000000", + "NUMBER_OF_BYTES": "165470011", + "NUMBER_OF_BYTES-eng": "165470011", + "NUMBER_OF_FRAMES": "161592", + "NUMBER_OF_FRAMES-eng": "161592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 4, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "191999", + "BPS-eng": "191999", + "DURATION": "01:54:54.592000000", + "DURATION-eng": "01:54:54.592000000", + "NUMBER_OF_BYTES": "165470080", + "NUMBER_OF_BYTES-eng": "165470080", + "NUMBER_OF_FRAMES": "161592", + "NUMBER_OF_FRAMES-eng": "161592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 5, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "191999", + "BPS-eng": "191999", + "DURATION": "01:54:54.592000000", + "DURATION-eng": "01:54:54.592000000", + "NUMBER_OF_BYTES": "165470017", + "NUMBER_OF_BYTES-eng": "165470017", + "NUMBER_OF_FRAMES": "161592", + "NUMBER_OF_FRAMES-eng": "161592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "79999", + "BPS-eng": "79999", + "DURATION": "01:54:54.592000000", + "DURATION-eng": "01:54:54.592000000", + "NUMBER_OF_BYTES": "68945743", + "NUMBER_OF_BYTES-eng": "68945743", + "NUMBER_OF_FRAMES": "161592", + "NUMBER_OF_FRAMES-eng": "161592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "eng", + "title": "English Audio Descriptive" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 7, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS": "79999", + "BPS-eng": "79999", + "DURATION": "01:54:54.635000000", + "DURATION-eng": "01:54:54.635000000", + "NUMBER_OF_BYTES": "68946334", + "NUMBER_OF_BYTES-eng": "68946334", + "NUMBER_OF_FRAMES": "161593", + "NUMBER_OF_FRAMES-eng": "161593", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8467", + "BPS-eng": "8467", + "DURATION": "01:52:57.259000000", + "DURATION-eng": "01:52:57.259000000", + "NUMBER_OF_BYTES": "7173359", + "NUMBER_OF_BYTES-eng": "7173359", + "NUMBER_OF_FRAMES": "1305", + "NUMBER_OF_FRAMES-eng": "1305", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5346", + "BPS-eng": "5346", + "DURATION": "01:53:36.716000000", + "DURATION-eng": "01:53:36.716000000", + "NUMBER_OF_BYTES": "4556024", + "NUMBER_OF_BYTES-eng": "4556024", + "NUMBER_OF_FRAMES": "987", + "NUMBER_OF_FRAMES-eng": "987", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6219", + "BPS-eng": "6219", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "5290597", + "NUMBER_OF_BYTES-eng": "5290597", + "NUMBER_OF_FRAMES": "1039", + "NUMBER_OF_FRAMES-eng": "1039", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ita" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7213", + "BPS-eng": "7213", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "6135967", + "NUMBER_OF_BYTES-eng": "6135967", + "NUMBER_OF_FRAMES": "1037", + "NUMBER_OF_FRAMES-eng": "1037", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ger" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6046", + "BPS-eng": "6046", + "DURATION": "01:53:36.924000000", + "DURATION-eng": "01:53:36.924000000", + "NUMBER_OF_BYTES": "5152527", + "NUMBER_OF_BYTES-eng": "5152527", + "NUMBER_OF_FRAMES": "1055", + "NUMBER_OF_FRAMES-eng": "1055", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5705", + "BPS-eng": "5705", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "4853076", + "NUMBER_OF_BYTES-eng": "4853076", + "NUMBER_OF_FRAMES": "962", + "NUMBER_OF_FRAMES-eng": "962", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "dut" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3871", + "BPS-eng": "3871", + "DURATION": "01:53:36.882000000", + "DURATION-eng": "01:53:36.882000000", + "NUMBER_OF_BYTES": "3299226", + "NUMBER_OF_BYTES-eng": "3299226", + "NUMBER_OF_FRAMES": "1012", + "NUMBER_OF_FRAMES-eng": "1012", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "chi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5505", + "BPS-eng": "5505", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "4683107", + "NUMBER_OF_BYTES-eng": "4683107", + "NUMBER_OF_FRAMES": "761", + "NUMBER_OF_FRAMES-eng": "761", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "dan" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5295", + "BPS-eng": "5295", + "DURATION": "01:53:36.882000000", + "DURATION-eng": "01:53:36.882000000", + "NUMBER_OF_BYTES": "4512045", + "NUMBER_OF_BYTES-eng": "4512045", + "NUMBER_OF_FRAMES": "1020", + "NUMBER_OF_FRAMES-eng": "1020", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "fin" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6792", + "BPS-eng": "6792", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "5778050", + "NUMBER_OF_BYTES-eng": "5778050", + "NUMBER_OF_FRAMES": "1035", + "NUMBER_OF_FRAMES-eng": "1035", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ice" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4025", + "BPS-eng": "4025", + "DURATION": "01:53:36.799000000", + "DURATION-eng": "01:53:36.799000000", + "NUMBER_OF_BYTES": "3430372", + "NUMBER_OF_BYTES-eng": "3430372", + "NUMBER_OF_FRAMES": "965", + "NUMBER_OF_FRAMES-eng": "965", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "kor" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5102", + "BPS-eng": "5102", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "4340438", + "NUMBER_OF_BYTES-eng": "4340438", + "NUMBER_OF_FRAMES": "915", + "NUMBER_OF_FRAMES-eng": "915", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "nob" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6718", + "BPS-eng": "6718", + "DURATION": "01:53:36.716000000", + "DURATION-eng": "01:53:36.716000000", + "NUMBER_OF_BYTES": "5724442", + "NUMBER_OF_BYTES-eng": "5724442", + "NUMBER_OF_FRAMES": "971", + "NUMBER_OF_FRAMES-eng": "971", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "por" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5920", + "BPS-eng": "5920", + "DURATION": "01:53:24.829000000", + "DURATION-eng": "01:53:24.829000000", + "NUMBER_OF_BYTES": "5035788", + "NUMBER_OF_BYTES-eng": "5035788", + "NUMBER_OF_FRAMES": "791", + "NUMBER_OF_FRAMES-eng": "791", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "swe" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4418", + "BPS-eng": "4418", + "DURATION": "01:53:25.121000000", + "DURATION-eng": "01:53:25.121000000", + "NUMBER_OF_BYTES": "3758214", + "NUMBER_OF_BYTES-eng": "3758214", + "NUMBER_OF_FRAMES": "1034", + "NUMBER_OF_FRAMES-eng": "1034", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "chi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5944", + "BPS-eng": "5944", + "DURATION": "01:44:56.032000000", + "DURATION-eng": "01:44:56.032000000", + "NUMBER_OF_BYTES": "4678300", + "NUMBER_OF_BYTES-eng": "4678300", + "NUMBER_OF_FRAMES": "621", + "NUMBER_OF_FRAMES-eng": "621", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5021", + "BPS-eng": "5021", + "DURATION": "01:45:01.993000000", + "DURATION-eng": "01:45:01.993000000", + "NUMBER_OF_BYTES": "3955982", + "NUMBER_OF_BYTES-eng": "3955982", + "NUMBER_OF_FRAMES": "584", + "NUMBER_OF_FRAMES-eng": "584", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4892", + "BPS-eng": "4892", + "DURATION": "01:45:01.993000000", + "DURATION-eng": "01:45:01.993000000", + "NUMBER_OF_BYTES": "3854083", + "NUMBER_OF_BYTES-eng": "3854083", + "NUMBER_OF_FRAMES": "585", + "NUMBER_OF_FRAMES-eng": "585", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ita" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5559", + "BPS-eng": "5559", + "DURATION": "01:45:01.993000000", + "DURATION-eng": "01:45:01.993000000", + "NUMBER_OF_BYTES": "4379185", + "NUMBER_OF_BYTES-eng": "4379185", + "NUMBER_OF_FRAMES": "585", + "NUMBER_OF_FRAMES-eng": "585", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ger" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5151", + "BPS-eng": "5151", + "DURATION": "01:45:01.993000000", + "DURATION-eng": "01:45:01.993000000", + "NUMBER_OF_BYTES": "4058034", + "NUMBER_OF_BYTES-eng": "4058034", + "NUMBER_OF_FRAMES": "578", + "NUMBER_OF_FRAMES-eng": "578", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "94", + "BPS-eng": "94", + "DURATION": "01:45:14.889000000", + "DURATION-eng": "01:45:14.889000000", + "NUMBER_OF_BYTES": "74295", + "NUMBER_OF_BYTES-eng": "74295", + "NUMBER_OF_FRAMES": "22", + "NUMBER_OF_FRAMES-eng": "22", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "164", + "BPS-eng": "164", + "DURATION": "01:53:36.716000000", + "DURATION-eng": "01:53:36.716000000", + "NUMBER_OF_BYTES": "140483", + "NUMBER_OF_BYTES-eng": "140483", + "NUMBER_OF_FRAMES": "28", + "NUMBER_OF_FRAMES-eng": "28", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "320", + "BPS-eng": "320", + "DURATION": "01:51:24.959000000", + "DURATION-eng": "01:51:24.959000000", + "NUMBER_OF_BYTES": "267760", + "NUMBER_OF_BYTES-eng": "267760", + "NUMBER_OF_FRAMES": "40", + "NUMBER_OF_FRAMES-eng": "40", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ita" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "177", + "BPS-eng": "177", + "DURATION": "01:51:24.959000000", + "DURATION-eng": "01:51:24.959000000", + "NUMBER_OF_BYTES": "147992", + "NUMBER_OF_BYTES-eng": "147992", + "NUMBER_OF_FRAMES": "23", + "NUMBER_OF_FRAMES-eng": "23", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "ger" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6894.675000", + "duration_ts": 6894675, + "height": 1080, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "148", + "BPS-eng": "148", + "DURATION": "01:53:36.924000000", + "DURATION-eng": "01:53:36.924000000", + "NUMBER_OF_BYTES": "126130", + "NUMBER_OF_BYTES-eng": "126130", + "NUMBER_OF_FRAMES": "23", + "NUMBER_OF_FRAMES-eng": "23", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-04 19:07:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-04 19:07:54", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Tron (1982)/008c3d2b373044dbb0ce176b51826824.mkv": { + "format": { + "bit_rate": "7831078", + "duration": "5747.286000", + "filename": "Tron (1982)/008c3d2b373044dbb0ce176b51826824.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5625930774", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-16T19:00:18.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 0, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Constrained Baseline", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4109907", + "DURATION-eng": "01:35:47.200000000", + "NUMBER_OF_BYTES-eng": "2952557518", + "NUMBER_OF_FRAMES-eng": "137795", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 19:00:18", + "language": "eng", + "title": "Tron 1982 1080p BRRip x264 DTS-HD 5.1-decatora27" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3701868", + "DURATION-eng": "01:35:47.286000000", + "NUMBER_OF_BYTES-eng": "2659461872", + "NUMBER_OF_FRAMES-eng": "538808", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 19:00:18", + "language": "eng", + "title": "English DTS-HD 5.1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5747.286000", + "duration_ts": 5747286, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30573", + "DURATION-eng": "01:34:40.550000000", + "NUMBER_OF_BYTES-eng": "21709458", + "NUMBER_OF_FRAMES-eng": "1914", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 19:00:18", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5747.286000", + "duration_ts": 5747286, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23834", + "DURATION-eng": "01:29:55.682000000", + "NUMBER_OF_BYTES-eng": "16075194", + "NUMBER_OF_FRAMES-eng": "1766", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 19:00:18", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + } + ] + }, + "The Golden Child/The Golden Child dvd rip XviD.Rets.avi": { + "format": { + "bit_rate": "1091893", + "duration": "5378.000000", + "filename": "The Golden Child/The Golden Child dvd rip XviD.Rets.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734025728", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "956585", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5378.000000", + "duration_ts": 134450, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "134450", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "224083", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Trumpet Of The Swan (2001)/The Trumpet of the Swan (2001) 720p HDTV DD5.1 MPEG2-TrollHD.mkv": { + "format": { + "bit_rate": "3426713", + "duration": "4485.887000", + "filename": "The Trumpet Of The Swan (2001)/The Trumpet of the Swan (2001) 720p HDTV DD5.1 MPEG2-TrollHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1921481420", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "tb", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:14:45.881000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "DURATION": "01:14:45.887000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Olympus Has Fallen (2013)/Olympus.Has.Fallen.2013.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "974501", + "duration": "6762.773333", + "filename": "Olympus Has Fallen (2013)/Olympus.Has.Fallen.2013.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "823791793", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2013-06-26T12:45:28.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64494", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6762.773333", + "duration_ts": 324613120, + "index": 0, + "max_bit_rate": "89160", + "nb_frames": "317005", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-06-26T12:45:28.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24/1", + "bit_rate": "906002", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6762.708333", + "duration_ts": 162305000, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "162305", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.083333", + "tags": { + "creation_time": "2013-06-26T12:45:33.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Scent Of A Woman (1992)/Scent Of A Woman 1992 DvDrip[Eng]-greenbud1969.avi": { + "format": { + "bit_rate": "804451", + "duration": "9385.292583", + "filename": "Scent Of A Woman (1992)/Scent Of A Woman 1992 DvDrip[Eng]-greenbud1969.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943751168", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "669444", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 496, + "display_aspect_ratio": "31:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9385.292583", + "duration_ts": 225022, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "225022", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 496 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "391054", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Dark Star (1974)/Dark Star - John Carpenter Sci-Fi 1974 Eng Subs 1080p [H264-mp4].mp4": { + "format": { + "bit_rate": "2577245", + "duration": "4978.069333", + "filename": "Dark Star (1974)/Dark Star - John Carpenter Sci-Fi 1974 Eng Subs 1080p [H264-mp4].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1603713333", + "start_time": "0.000000", + "tags": { + "Chapters": "All Named", + "Encoded by": "TBox", + "LANGUAGE": "English", + "SUBTITLE": "Englisn", + "compatible_brands": "mp42isomavc1", + "creation_time": "2016-02-27T20:03:53.000000Z", + "date": "1974", + "genre": "Sci-Fi", + "major_brand": "mp42", + "minor_version": "0", + "title": "Dark Star - John Carpenter Sci-Fi 1974 Eng Subs 1080p [H264-mp4]" + } + }, + "streams": [ + { + "avg_frame_rate": "358416000/14933999", + "bit_rate": "2443385", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "14933999/716832000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "1923:1040", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4977.999667", + "duration_ts": 448019970, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "119472", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "641:640", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-02-27T20:03:53.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127967", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4978.069333", + "duration_ts": 238947328, + "index": 1, + "max_bit_rate": "166816", + "nb_frames": "233347", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-02-27T20:03:53.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "54", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4978.069333", + "duration_ts": 448026240, + "height": 60, + "index": 2, + "nb_frames": "1618", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-02-27T20:03:53.000000Z", + "language": "eng", + "rotate": "0" + }, + "time_base": "1/90000", + "width": 1922 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4978.069333", + "duration_ts": 448026240, + "index": 3, + "nb_frames": "18", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-02-27T20:03:53.000000Z", + "language": "und" + }, + "time_base": "1/90000" + } + ] + }, + "Alice Through The Looking Glass (2016)/Alice.Through.the.Looking.Glass.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1466087", + "duration": "6799.132000", + "filename": "Alice Through The Looking Glass (2016)/Alice.Through.the.Looking.Glass.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1246014956", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-09-17T09:13:17.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "Alice.Through.the.Looking.Glass.2016.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "97809600/4079479", + "bit_rate": "1299418", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "4079479/195619200", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6799.132000", + "duration_ts": 611921880, + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "163016", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-17T09:13:17.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159972", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6777.067000", + "duration_ts": 325299216, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "317675", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-17T09:13:17.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "46", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6799.132000", + "duration_ts": 611921880, + "height": 60, + "index": 2, + "nb_frames": "2740", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-17T09:13:17.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6799.132000", + "duration_ts": 6799132, + "index": 3, + "nb_frames": "24", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-17T09:13:17.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Drunken Master (1978)/Drunken Master [1978] DvDrip - SyMbIoTe.avi": { + "format": { + "bit_rate": "890878", + "duration": "6399.720000", + "filename": "Drunken Master (1978)/Drunken Master [1978] DvDrip - SyMbIoTe.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "712671576", + "start_time": "0.000000", + "tags": { + "encoder": "Lavf51.12.1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "749980", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 576, + "coded_width": 720, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6399.640000", + "duration_ts": 159991, + "has_b_frames": 0, + "height": 576, + "index": 0, + "level": 1, + "nb_frames": "159991", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "64:45", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6399.720000", + "duration_ts": 266655, + "index": 1, + "nb_frames": "266655", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Aladdin (2019)/4fe12adfdf4b4e9daa4f1366452d3431.mkv": { + "format": { + "bit_rate": "4324031", + "duration": "7678.122000", + "filename": "Aladdin (2019)/4fe12adfdf4b4e9daa4f1366452d3431.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4150055637", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-06T14:38:34.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3938370", + "DURATION-eng": "02:07:58.087000000", + "NUMBER_OF_BYTES-eng": "3779893557", + "NUMBER_OF_FRAMES-eng": "184090", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-06 14:38:34" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "510000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS Express", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:07:58.122000000", + "NUMBER_OF_BYTES-eng": "368549888", + "NUMBER_OF_FRAMES-eng": "89978", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-06 14:38:34", + "language": "eng", + "title": "" + }, + "time_base": "1/1000" + } + ] + }, + "Die Hard 4 - Live Free Or Die Hard/Live.Free.Or.Die.Hard[2007]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "794680", + "duration": "7407.120000", + "filename": "Die Hard 4 - Live Free Or Die Hard/Live.Free.Or.Die.Hard[2007]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735787008", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "672975", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 254, + "coded_width": 628, + "display_aspect_ratio": "314:127", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7407.120000", + "duration_ts": 185178, + "has_b_frames": 1, + "height": 254, + "index": 0, + "level": 5, + "nb_frames": "185178", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 628 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "308630", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Tomorrowland (2015)/Tomorrowland.2015.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "7873557", + "duration": "7803.296000", + "filename": "Tomorrowland (2015)/Tomorrowland.2015.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7679962136", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 580, + "coded_width": 1280, + "display_aspect_ratio": "16256:7395", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 580, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "254:255", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:03.296000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:03.285000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Prestige (2006)/The.Prestige.2006.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "2333309", + "duration": "7826.730000", + "filename": "The Prestige (2006)/The.Prestige.2006.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2282772564", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-08-21T17:12:58.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1822695", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.610458", + "duration_ts": 187838651, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "187651", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-08-21T17:12:58.000000Z", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "381014", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.730667", + "duration_ts": 375683072, + "index": 1, + "max_bit_rate": "454504", + "nb_frames": "366878", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-08-20T20:33:21.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124189", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7826.730667", + "duration_ts": 375683072, + "index": 2, + "max_bit_rate": "143032", + "nb_frames": "366878", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-08-20T20:16:21.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Janeane Garofalo If You Will Live In Seattle (2010)/91de1f5c0ad64684af880692e6224d59.mkv": { + "format": { + "bit_rate": "9559036", + "duration": "3928.395000", + "filename": "Janeane Garofalo If You Will Live In Seattle (2010)/91de1f5c0ad64684af880692e6224d59.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4693959036", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-08T15:13:42.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8047290", + "BPS-eng": "8047290", + "DURATION": "01:05:28.391000000", + "DURATION-eng": "01:05:28.391000000", + "NUMBER_OF_BYTES": "3951613186", + "NUMBER_OF_BYTES-eng": "3951613186", + "NUMBER_OF_FRAMES": "117734", + "NUMBER_OF_FRAMES-eng": "117734", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.5.0 ('Quiet Fire') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.5.0 ('Quiet Fire') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-08 15:13:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-08 15:13:42", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508995", + "BPS-eng": "1508995", + "DURATION": "01:05:28.395000000", + "DURATION-eng": "01:05:28.395000000", + "NUMBER_OF_BYTES": "740991432", + "NUMBER_OF_BYTES-eng": "740991432", + "NUMBER_OF_FRAMES": "368286", + "NUMBER_OF_FRAMES-eng": "368286", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.5.0 ('Quiet Fire') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.5.0 ('Quiet Fire') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-08 15:13:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-08 15:13:42", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "War For The Planet Of The Apes (2017)/War.for.the.Planet.of.the.Apes.2017.720p.BluRay.DTS-ES.x264-LEGi0N.mkv": { + "format": { + "bit_rate": "5100298", + "duration": "8409.280000", + "filename": "War For The Planet Of The Apes (2017)/War.for.the.Planet.of.the.Apes.2017.720p.BluRay.DTS-ES.x264-LEGi0N.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5361229555", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-10-18T03:42:56.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "War.for.the.Planet.of.the.Apes.2017.720p.BluRay.DTS-ES.x264-LEGi0N" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3575852", + "BPS-eng": "3575852", + "DURATION": "02:20:09.276000000", + "DURATION-eng": "02:20:09.276000000", + "NUMBER_OF_BYTES": "3758791429", + "NUMBER_OF_BYTES-eng": "3758791429", + "NUMBER_OF_FRAMES": "201621", + "NUMBER_OF_FRAMES-eng": "201621", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-18 03:42:56", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-18 03:42:56", + "language": "eng", + "title": "War.for.the.Planet.of.the.Apes.2017.720p.BluRay.DTS-ES.x264-LEGi0N" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "02:20:09.280000000", + "DURATION-eng": "02:20:09.280000000", + "NUMBER_OF_BYTES": "1586200556", + "NUMBER_OF_BYTES-eng": "1586200556", + "NUMBER_OF_FRAMES": "788370", + "NUMBER_OF_FRAMES-eng": "788370", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-18 03:42:56", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-18 03:42:56", + "language": "eng", + "title": "War.for.the.Planet.of.the.Apes.2017.720p.BluRay.DTS-ES.x264-LEGi0N" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8409.280000", + "duration_ts": 8409280, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14230", + "BPS-eng": "14230", + "DURATION": "02:09:21.212000000", + "DURATION-eng": "02:09:21.212000000", + "NUMBER_OF_BYTES": "13805448", + "NUMBER_OF_BYTES-eng": "13805448", + "NUMBER_OF_FRAMES": "2022", + "NUMBER_OF_FRAMES-eng": "2022", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-18 03:42:56", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-18 03:42:56", + "language": "eng", + "title": "War.for.the.Planet.of.the.Apes.2017.720p.BluRay.DTS-ES.x264-LEGi0N" + }, + "time_base": "1/1000" + } + ] + }, + "Leon - The Professional (1994)/9446626de1574901be091fe44d8f0dff.mkv": { + "format": { + "bit_rate": "6052381", + "duration": "7974.974000", + "filename": "Leon - The Professional (1994)/9446626de1574901be091fe44d8f0dff.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 9, + "probe_score": 100, + "size": "6033448224", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-05T21:17:50.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0", + "title": "Professional, The (1994)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5499743", + "DURATION-eng": "02:12:54.967000000", + "NUMBER_OF_BYTES-eng": "5482534506", + "NUMBER_OF_FRAMES-eng": "191208", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "527783", + "DURATION-eng": "02:12:54.954000000", + "NUMBER_OF_BYTES-eng": "526131040", + "NUMBER_OF_FRAMES-eng": "373826", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7167", + "DURATION-eng": "02:09:06.569000000", + "NUMBER_OF_BYTES-eng": "6940742", + "NUMBER_OF_FRAMES-eng": "1307", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4297", + "DURATION-eng": "02:07:05.613000000", + "NUMBER_OF_BYTES-eng": "4095919", + "NUMBER_OF_FRAMES-eng": "410", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "eng", + "title": "Trivia" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5998", + "DURATION-eng": "02:06:09.676000000", + "NUMBER_OF_BYTES-eng": "5675788", + "NUMBER_OF_FRAMES-eng": "1032", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5281", + "DURATION-eng": "02:06:39.539000000", + "NUMBER_OF_BYTES-eng": "5017016", + "NUMBER_OF_FRAMES-eng": "1005", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "por" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4195", + "DURATION-eng": "02:07:05.613000000", + "NUMBER_OF_BYTES-eng": "3999072", + "NUMBER_OF_FRAMES-eng": "410", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "por", + "title": "Trivia" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5798", + "DURATION-eng": "02:06:39.706000000", + "NUMBER_OF_BYTES-eng": "5508453", + "NUMBER_OF_FRAMES-eng": "1122", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7974.974000", + "duration_ts": 7974974, + "height": 1080, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4300", + "DURATION-eng": "02:07:05.613000000", + "NUMBER_OF_BYTES-eng": "4099573", + "NUMBER_OF_FRAMES-eng": "410", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 21:17:50", + "language": "spa", + "title": "Trivia" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Isle Of Dogs (2018)/2be4e01d335c4d909d283135b7084ff9.mkv": { + "format": { + "bit_rate": "4166426", + "duration": "6084.914000", + "filename": "Isle Of Dogs (2018)/2be4e01d335c4d909d283135b7084ff9.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3169043593", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-26T04:31:20.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "125267", + "DURATION-eng": "01:41:07.840000000", + "NUMBER_OF_BYTES-eng": "95013078", + "NUMBER_OF_FRAMES-eng": "284430", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-26 04:31:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS-eng": "4039195", + "DURATION-eng": "01:41:24.871000000", + "NUMBER_OF_BYTES-eng": "3072247648", + "NUMBER_OF_FRAMES-eng": "145891", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-26 04:31:20", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "Sarah Silverman Jesus is Magic/Sarah.Silverman.Jesus.is.Magic.LiMiTED.DVDSCR.XviD-DoNE.avi": { + "format": { + "bit_rate": "1387151", + "duration": "4228.395062", + "filename": "Sarah Silverman Jesus is Magic/Sarah.Silverman.Jesus.is.Magic.LiMiTED.DVDSCR.XviD-DoNE.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733177856", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1121715", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 576, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4228.395062", + "duration_ts": 101380, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "101380", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "135307425", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/32000" + } + ] + }, + "A Good Day To Die Hard (2013)/A_Good_Day_to_Die_Hard_(2013)_Bluray-1080p_x265_FLAC_[EN].mkv": { + "format": { + "bit_rate": "6915849", + "duration": "5859.155000", + "filename": "A Good Day To Die Hard (2013)/A_Good_Day_to_Die_Hard_(2013)_Bluray-1080p_x265_FLAC_[EN].mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "5065129411", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-08-10T01:58:17Z", + "ENCODER": "Lavf55.12.0", + "title": "A Good Day to Die Hard" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "FLAC (Free Lossless Audio Codec)", + "codec_name": "flac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s32", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5859.155000", + "duration_ts": 5859155, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5859.155000", + "duration_ts": 5859155, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5859.155000", + "duration_ts": 5859155, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Evil Dead (1981)/The.Evil.Dead.1981.OAR.720p.BluRay.X264-IAMABLE.mkv": { + "format": { + "bit_rate": "5660078", + "duration": "5126.144000", + "filename": "The Evil Dead (1981)/The.Evil.Dead.1981.OAR.720p.BluRay.X264-IAMABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3626797411", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "89:160", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13993642", + "BPS-eng": "13993642", + "DURATION": "01:25:26.121000000", + "DURATION-eng": "01:25:26.121000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "8966637818", + "NUMBER_OF_BYTES-eng": "8966637818", + "NUMBER_OF_FRAMES": "122904", + "NUMBER_OF_FRAMES-eng": "122904", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:25:26.144000000", + "DURATION-eng": "01:25:26.144000000", + "NUMBER_OF_BYTES": "410091520", + "NUMBER_OF_BYTES-eng": "410091520", + "NUMBER_OF_FRAMES": "160192", + "NUMBER_OF_FRAMES-eng": "160192", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5126.144000", + "duration_ts": 5126144, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "19", + "BPS-eng": "19", + "DURATION": "01:21:34.516000000", + "DURATION-eng": "01:20:46.300000000", + "NUMBER_OF_BYTES": "11910", + "NUMBER_OF_BYTES-eng": "11910", + "NUMBER_OF_FRAMES": "440", + "NUMBER_OF_FRAMES-eng": "440", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5126.144000", + "duration_ts": 5126144, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25", + "BPS-eng": "25", + "DURATION": "01:25:18.198000000", + "DURATION-eng": "01:25:15.194000000", + "NUMBER_OF_BYTES": "16558", + "NUMBER_OF_BYTES-eng": "16558", + "NUMBER_OF_FRAMES": "648", + "NUMBER_OF_FRAMES-eng": "648", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Dead Dont Die (2019)/e2081174d209448aa699dadb9ffa1a32.mkv": { + "format": { + "bit_rate": "13006813", + "duration": "6268.598000", + "filename": "The Dead Dont Die (2019)/e2081174d209448aa699dadb9ffa1a32.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "10191810971", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-31T17:06:20.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "11495193", + "DURATION-eng": "01:44:28.596000000", + "NUMBER_OF_BYTES-eng": "9007340550", + "NUMBER_OF_FRAMES-eng": "150296", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-31 17:06:20", + "language": "eng", + "title": "The.Dead.Dont.Die.2019.1080p.BluRay.x264.DTS-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1508999", + "DURATION-eng": "01:44:28.598000000", + "NUMBER_OF_BYTES-eng": "1182414172", + "NUMBER_OF_FRAMES-eng": "587681", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-31 17:06:20", + "language": "eng", + "title": "The.Dead.Dont.Die.2019.1080p.BluRay.x264.DTS-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6268.598000", + "duration_ts": 6268598, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43", + "DURATION-eng": "01:41:20.989000000", + "NUMBER_OF_BYTES-eng": "33026", + "NUMBER_OF_FRAMES-eng": "1142", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-31 17:06:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6268.598000", + "duration_ts": 564173820, + "has_b_frames": 0, + "height": 600, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6268.598000", + "duration_ts": 564173820, + "has_b_frames": 0, + "height": 176, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6268.598000", + "duration_ts": 564173820, + "has_b_frames": 0, + "height": 120, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6268.598000", + "duration_ts": 564173820, + "has_b_frames": 0, + "height": 882, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "Half Baked/Half Baked.avi": { + "format": { + "bit_rate": "1969448", + "duration": "4928.016000", + "filename": "Half Baked/Half Baked.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1213184000", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1845196", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4928.011345", + "duration_ts": 118154, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "118154", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111552", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4928.016000", + "duration_ts": 205334, + "index": 1, + "nb_frames": "205334", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Shaun Of The Dead/Shaun Of The Dead.avi": { + "format": { + "bit_rate": "1030657", + "duration": "5698.280000", + "filename": "Shaun Of The Dead/Shaun Of The Dead.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734121984", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "904417", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5698.280000", + "duration_ts": 142457, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": 3, + "nb_frames": "142457", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113328", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5698.272000", + "duration_ts": 237428, + "index": 1, + "nb_frames": "237428", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Stardust (2007)/Stardust.2007.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1907152", + "duration": "7661.716667", + "filename": "Stardust (2007)/Stardust.2007.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1826508049", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-10-15T17:28:10.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1807460", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1920, + "display_aspect_ratio": "480:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7661.654000", + "duration_ts": 735518784, + "has_b_frames": 2, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "183696", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-10-15T17:28:10.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95928", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7661.717333", + "duration_ts": 367762432, + "index": 1, + "max_bit_rate": "133312", + "nb_frames": "359143", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-10-15T17:29:00.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Chicago 10 (2007)/Chicago.10.2007.LIMITED.DVDRip.XviD.avi": { + "format": { + "bit_rate": "978625", + "duration": "5980.057417", + "filename": "Chicago 10 (2007)/Chicago.10.2007.LIMITED.DVDRip.XviD.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731529216", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "839352", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 320, + "coded_width": 592, + "display_aspect_ratio": "37:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5980.057417", + "duration_ts": 143378, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 3, + "nb_frames": "143378", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126528", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5980.056000", + "duration_ts": 249169, + "index": 1, + "nb_frames": "249169", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Trading Places (1983)/Trading.Places.1983.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1214197", + "duration": "6983.060000", + "filename": "Trading Places (1983)/Trading.Places.1983.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1059851644", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2016-12-20T15:07:17.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64545", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6983.061333", + "duration_ts": 335186944, + "index": 0, + "max_bit_rate": "85336", + "nb_frames": "327331", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-20T15:07:17.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1145725", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6982.976000", + "duration_ts": 167591424, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "167424", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2016-12-20T15:07:20.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Clerks/Clerks.mkv": { + "format": { + "bit_rate": "1996863", + "duration": "5505.058000", + "filename": "Clerks/Clerks.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1374106160", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 342, + "coded_width": 716, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "106:57", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 342, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "159:179", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 716 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "28 Days Later (2002)/28 Days Later (2002) BRRip 720p x264 AAC-Ameet6233.mp4": { + "format": { + "bit_rate": "1114516", + "duration": "6787.668333", + "filename": "28 Days Later (2002)/28 Days Later (2002) BRRip 720p x264 AAC-Ameet6233.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "945621294", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-06-14T21:31:33.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "982433", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6787.614167", + "duration_ts": 651610960, + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "162740", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-06-14T21:31:33.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127967", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6787.669333", + "duration_ts": 325808128, + "index": 1, + "max_bit_rate": "201712", + "nb_frames": "318172", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-06-14T21:32:20.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Last Laugh (2019)/3a28afe2105040429e7eea462dbf45ae.mkv": { + "format": { + "bit_rate": "5715733", + "duration": "5918.624000", + "filename": "The Last Laugh (2019)/3a28afe2105040429e7eea462dbf45ae.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 37, + "probe_score": 100, + "size": "4228659743", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-11T08:02:46.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5070576", + "BPS-eng": "5070576", + "DURATION": "01:38:38.288000000", + "DURATION-eng": "01:38:38.288000000", + "NUMBER_OF_BYTES": "3751141842", + "NUMBER_OF_BYTES-eng": "3751141842", + "NUMBER_OF_FRAMES": "141897", + "NUMBER_OF_FRAMES-eng": "141897", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:38:38.624000000", + "DURATION-eng": "01:38:38.624000000", + "NUMBER_OF_BYTES": "473489920", + "NUMBER_OF_BYTES-eng": "473489920", + "NUMBER_OF_FRAMES": "184957", + "NUMBER_OF_FRAMES-eng": "184957", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "64", + "BPS-eng": "64", + "DURATION": "01:32:09.816000000", + "DURATION-eng": "01:32:09.816000000", + "NUMBER_OF_BYTES": "44499", + "NUMBER_OF_BYTES-eng": "44499", + "NUMBER_OF_FRAMES": "1349", + "NUMBER_OF_FRAMES-eng": "1349", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:35.258000000", + "DURATION-eng": "01:32:35.258000000", + "NUMBER_OF_BYTES": "2220", + "NUMBER_OF_BYTES-eng": "2220", + "NUMBER_OF_FRAMES": "75", + "NUMBER_OF_FRAMES-eng": "75", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "spa", + "title": "Castilian [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "39275", + "NUMBER_OF_BYTES-eng": "39275", + "NUMBER_OF_FRAMES": "1245", + "NUMBER_OF_FRAMES-eng": "1245", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "spa", + "title": "Castilian [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5", + "BPS-eng": "5", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "4244", + "NUMBER_OF_BYTES-eng": "4244", + "NUMBER_OF_FRAMES": "120", + "NUMBER_OF_FRAMES-eng": "120", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "spa", + "title": "Spanish [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "37968", + "NUMBER_OF_BYTES-eng": "37968", + "NUMBER_OF_FRAMES": "1318", + "NUMBER_OF_FRAMES-eng": "1318", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "spa", + "title": "Spanish [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:35.258000000", + "DURATION-eng": "01:32:35.258000000", + "NUMBER_OF_BYTES": "2437", + "NUMBER_OF_BYTES-eng": "2437", + "NUMBER_OF_FRAMES": "81", + "NUMBER_OF_FRAMES-eng": "81", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "fre", + "title": "French [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "61", + "BPS-eng": "61", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "44782", + "NUMBER_OF_BYTES-eng": "44782", + "NUMBER_OF_FRAMES": "1334", + "NUMBER_OF_FRAMES-eng": "1334", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "fre", + "title": "French [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:35.258000000", + "DURATION-eng": "01:32:35.258000000", + "NUMBER_OF_BYTES": "2636", + "NUMBER_OF_BYTES-eng": "2636", + "NUMBER_OF_FRAMES": "79", + "NUMBER_OF_FRAMES-eng": "79", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "ger", + "title": "German [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "65", + "BPS-eng": "65", + "DURATION": "01:32:37.343000000", + "DURATION-eng": "01:32:37.343000000", + "NUMBER_OF_BYTES": "45216", + "NUMBER_OF_BYTES-eng": "45216", + "NUMBER_OF_FRAMES": "1332", + "NUMBER_OF_FRAMES-eng": "1332", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "ger", + "title": "German [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:35.258000000", + "DURATION-eng": "01:32:35.258000000", + "NUMBER_OF_BYTES": "2498", + "NUMBER_OF_BYTES-eng": "2498", + "NUMBER_OF_FRAMES": "85", + "NUMBER_OF_FRAMES-eng": "85", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "ita", + "title": "Italian [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54", + "BPS-eng": "54", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "40289", + "NUMBER_OF_BYTES-eng": "40289", + "NUMBER_OF_FRAMES": "1338", + "NUMBER_OF_FRAMES-eng": "1338", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "ita", + "title": "Italian [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "43477", + "NUMBER_OF_BYTES-eng": "43477", + "NUMBER_OF_FRAMES": "1334", + "NUMBER_OF_FRAMES-eng": "1334", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "por", + "title": "Portuguese [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:43.808000000", + "DURATION-eng": "01:32:43.808000000", + "NUMBER_OF_BYTES": "2681", + "NUMBER_OF_BYTES-eng": "2681", + "NUMBER_OF_FRAMES": "95", + "NUMBER_OF_FRAMES-eng": "95", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "por", + "title": "Brazilian Portuguese [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "61", + "BPS-eng": "61", + "DURATION": "01:32:43.808000000", + "DURATION-eng": "01:32:43.808000000", + "NUMBER_OF_BYTES": "42484", + "NUMBER_OF_BYTES-eng": "42484", + "NUMBER_OF_FRAMES": "1388", + "NUMBER_OF_FRAMES-eng": "1388", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "por", + "title": "Brazilian Portuguese [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:35.258000000", + "DURATION-eng": "01:32:35.258000000", + "NUMBER_OF_BYTES": "2210", + "NUMBER_OF_BYTES-eng": "2210", + "NUMBER_OF_FRAMES": "77", + "NUMBER_OF_FRAMES-eng": "77", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "pol", + "title": "Polish [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "35133", + "NUMBER_OF_BYTES-eng": "35133", + "NUMBER_OF_FRAMES": "1216", + "NUMBER_OF_FRAMES-eng": "1216", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "pol", + "title": "Polish [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:32:35.258000000", + "DURATION-eng": "01:32:35.258000000", + "NUMBER_OF_BYTES": "2301", + "NUMBER_OF_BYTES-eng": "2301", + "NUMBER_OF_FRAMES": "78", + "NUMBER_OF_FRAMES-eng": "78", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "tur", + "title": "Turkish [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "56", + "BPS-eng": "56", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "41804", + "NUMBER_OF_BYTES-eng": "41804", + "NUMBER_OF_FRAMES": "1331", + "NUMBER_OF_FRAMES-eng": "1331", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "tur", + "title": "Turkish [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "42546", + "NUMBER_OF_BYTES-eng": "42546", + "NUMBER_OF_FRAMES": "1072", + "NUMBER_OF_FRAMES-eng": "1072", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "swe", + "title": "Swedish [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "39271", + "NUMBER_OF_BYTES-eng": "39271", + "NUMBER_OF_FRAMES": "1252", + "NUMBER_OF_FRAMES-eng": "1252", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "dan", + "title": "Danish [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "01:37:47.862000000", + "DURATION-eng": "01:37:47.862000000", + "NUMBER_OF_BYTES": "37528", + "NUMBER_OF_BYTES-eng": "37528", + "NUMBER_OF_FRAMES": "1297", + "NUMBER_OF_FRAMES-eng": "1297", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "fin", + "title": "Finnish [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "37911", + "NUMBER_OF_BYTES-eng": "37911", + "NUMBER_OF_FRAMES": "1246", + "NUMBER_OF_FRAMES-eng": "1246", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "dut", + "title": "Dutch [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "01:37:49.864000000", + "DURATION-eng": "01:37:49.864000000", + "NUMBER_OF_BYTES": "42135", + "NUMBER_OF_BYTES-eng": "42135", + "NUMBER_OF_FRAMES": "1333", + "NUMBER_OF_FRAMES-eng": "1333", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "nor", + "title": "Norwegian [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "90", + "BPS-eng": "90", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "66404", + "NUMBER_OF_BYTES-eng": "66404", + "NUMBER_OF_FRAMES": "1338", + "NUMBER_OF_FRAMES-eng": "1338", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "rus", + "title": "Russian [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "89", + "BPS-eng": "89", + "DURATION": "01:37:49.905000000", + "DURATION-eng": "01:37:49.905000000", + "NUMBER_OF_BYTES": "65741", + "NUMBER_OF_BYTES-eng": "65741", + "NUMBER_OF_FRAMES": "1310", + "NUMBER_OF_FRAMES-eng": "1310", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "gre", + "title": "Greek [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "90", + "BPS-eng": "90", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "66365", + "NUMBER_OF_BYTES-eng": "66365", + "NUMBER_OF_FRAMES": "1345", + "NUMBER_OF_FRAMES-eng": "1345", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "heb", + "title": "Hebrew [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "99", + "BPS-eng": "99", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "73084", + "NUMBER_OF_BYTES-eng": "73084", + "NUMBER_OF_FRAMES": "1340", + "NUMBER_OF_FRAMES-eng": "1340", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "ara", + "title": "Arabic [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54", + "BPS-eng": "54", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "39884", + "NUMBER_OF_BYTES-eng": "39884", + "NUMBER_OF_FRAMES": "1335", + "NUMBER_OF_FRAMES-eng": "1335", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "rum", + "title": "Romanian [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "01:37:49.864000000", + "DURATION-eng": "01:37:49.864000000", + "NUMBER_OF_BYTES": "46496", + "NUMBER_OF_BYTES-eng": "46496", + "NUMBER_OF_FRAMES": "1398", + "NUMBER_OF_FRAMES-eng": "1398", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "ind", + "title": "Indonesian [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "134", + "BPS-eng": "134", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "98684", + "NUMBER_OF_BYTES-eng": "98684", + "NUMBER_OF_FRAMES": "1422", + "NUMBER_OF_FRAMES-eng": "1422", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "tha", + "title": "Thai [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "60", + "BPS-eng": "60", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "44221", + "NUMBER_OF_BYTES-eng": "44221", + "NUMBER_OF_FRAMES": "1339", + "NUMBER_OF_FRAMES-eng": "1339", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "kor", + "title": "Korean [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54", + "BPS-eng": "54", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "40107", + "NUMBER_OF_BYTES-eng": "40107", + "NUMBER_OF_FRAMES": "1338", + "NUMBER_OF_FRAMES-eng": "1338", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "chi", + "title": "Chinese (Simplified) [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "39441", + "NUMBER_OF_BYTES-eng": "39441", + "NUMBER_OF_FRAMES": "1339", + "NUMBER_OF_FRAMES-eng": "1339", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "chi", + "title": "Chinese (Traditional) [Full]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 35, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2", + "BPS-eng": "2", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "1594", + "NUMBER_OF_BYTES-eng": "1594", + "NUMBER_OF_FRAMES": "47", + "NUMBER_OF_FRAMES-eng": "47", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "jpn", + "title": "Japanese [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5918.624000", + "duration_ts": 5918624, + "index": 36, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "48", + "BPS-eng": "48", + "DURATION": "01:37:49.906000000", + "DURATION-eng": "01:37:49.906000000", + "NUMBER_OF_BYTES": "35555", + "NUMBER_OF_BYTES-eng": "35555", + "NUMBER_OF_FRAMES": "1372", + "NUMBER_OF_FRAMES-eng": "1372", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-01-11 08:02:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-11 08:02:46", + "language": "jpn", + "title": "Japanese [Full]" + }, + "time_base": "1/1000" + } + ] + }, + "Zoolander/Zoolander.avi": { + "format": { + "bit_rate": "1411902", + "duration": "5348.352000", + "filename": "Zoolander/Zoolander.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943919104", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1286044", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5348.348348", + "duration_ts": 128232, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "128232", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113152", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5348.352000", + "duration_ts": 222848, + "index": 1, + "nb_frames": "222848", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Splice (2009)/Splice.2009.720p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "942443", + "duration": "6237.845000", + "filename": "Splice (2009)/Splice.2009.720p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734852179", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-11-16T00:16:30.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "842814", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6236.897333", + "duration_ts": 598742144, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "149536", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 12012, + "start_time": "0.125125", + "tags": { + "creation_time": "2012-11-16T00:16:30.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95844", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6237.845333", + "duration_ts": 299416576, + "index": 1, + "max_bit_rate": "147104", + "nb_frames": "292399", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-16T00:18:02.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Hustle & Flow (2005)/dmd-hustleflow-cd1.avi": { + "format": { + "bit_rate": "1765740", + "duration": "3323.823824", + "filename": "Hustle & Flow (2005)/dmd-hustleflow-cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733626368", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1311035", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3323.823824", + "duration_ts": 79692, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "79692", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "186132460", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Trainspotting/Trainspotting.avi": { + "format": { + "bit_rate": "1124765", + "duration": "5197.680000", + "filename": "Trainspotting/Trainspotting.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "730771456", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "952369", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 320, + "coded_width": 576, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5197.680000", + "duration_ts": 129942, + "has_b_frames": 0, + "height": 320, + "index": 0, + "level": -99, + "nb_frames": "129942", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159992", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5197.662041", + "duration_ts": 198973, + "index": 1, + "nb_frames": "198973", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "Legend/Legend.avi": { + "format": { + "bit_rate": "863073", + "duration": "6806.184000", + "filename": "Legend/Legend.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734279680", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "731886", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 576, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6806.181181", + "duration_ts": 163185, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "163185", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "118480", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6806.184000", + "duration_ts": 283591, + "index": 1, + "nb_frames": "283591", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The 'Burbs/The.Burbs[UnCut][1989]DvDrip[Eng]-spencer.avi": { + "format": { + "bit_rate": "1004050", + "duration": "5830.400000", + "filename": "The 'Burbs/The.Burbs[UnCut][1989]DvDrip[Eng]-spencer.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731752282", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-1.0.2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "866256", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 512, + "display_aspect_ratio": "32:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5830.400000", + "duration_ts": 145760, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "145760", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "93285341", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Venom (2018)/d93a6f6417024d329a4cb00e74557d3c.mkv": { + "format": { + "bit_rate": "5350482", + "duration": "6430.400000", + "filename": "Venom (2018)/d93a6f6417024d329a4cb00e74557d3c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4300717663", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "DURATION": "01:47:10.381000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:47:10.400000000" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6430.400000", + "duration_ts": 6430400, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:36:13.375000000", + "ENCODER": "Lavc57.106.101 ssa" + }, + "time_base": "1/1000" + } + ] + }, + "Bram Stoker's - Dracula/Bram Stoker's - Dracula (1992).avi": { + "format": { + "bit_rate": "800893", + "duration": "7330.000000", + "filename": "Bram Stoker's - Dracula/Bram Stoker's - Dracula (1992).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733818880", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "569585", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7330.000000", + "duration_ts": 183250, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "183250", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "305417", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Mystery Men/Mystery Men.m4v": { + "format": { + "bit_rate": "1882719", + "duration": "7287.808000", + "filename": "Mystery Men/Mystery Men.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1715112350", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T05:02:45.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "629006400/26236003", + "bit_rate": "1296942", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "26236003/1258012800", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "423:232", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7287.778611", + "duration_ts": 655900075, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "174724", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "47:40", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T05:02:45.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132648", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7287.808000", + "duration_ts": 349814784, + "index": 1, + "max_bit_rate": "224016", + "nb_frames": "341616", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T05:02:45.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7287.808000", + "duration_ts": 349814784, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "227744", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T05:02:45.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Better Than Chocolate (1999)/Better.Than.Chocolate.1999.DVDRip.DivX-MEDiAMANiACS.avi": { + "format": { + "bit_rate": "972918", + "duration": "6035.827494", + "filename": "Better Than Chocolate (1999)/Better.Than.Chocolate.1999.DVDRip.DivX-MEDiAMANiACS.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734046208", + "start_time": "0.000000", + "tags": { + "ISBJ": "", + "artist": "", + "comment": "", + "copyright": "*MEDiAMANiACS*", + "encoder": "Nandub v1.0rc2", + "title": "" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "820907", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 560, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6035.827494", + "duration_ts": 144715, + "has_b_frames": 0, + "height": 304, + "index": 0, + "level": -99, + "nb_frames": "144715", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 560 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "139176", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6035.736000", + "duration_ts": 251489, + "index": 1, + "nb_frames": "251489", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "X Men (2000)/X.Men.2000.1080p.BluRay.x264-nikt0.mkv": { + "format": { + "bit_rate": "6392461", + "duration": "6260.320000", + "filename": "X Men (2000)/X.Men.2000.1080p.BluRay.x264-nikt0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5002357097", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-25T07:59:40Z", + "ENCODER": "Lavf57.7.2", + "title": "X.Men.2000.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5750314", + "DURATION-eng": "01:44:20.296000000", + "NUMBER_OF_BYTES-eng": "4499833516", + "NUMBER_OF_FRAMES-eng": "150097", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:43:21" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:44:20.288000000", + "NUMBER_OF_BYTES-eng": "350576128", + "NUMBER_OF_FRAMES-eng": "195634", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:43:21", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "01:44:20.320000000", + "NUMBER_OF_BYTES-eng": "150247680", + "NUMBER_OF_FRAMES-eng": "195635", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:43:21", + "language": "eng", + "title": "Stereo commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6260.320000", + "duration_ts": 6260320, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35", + "DURATION-eng": "01:34:15.440000000", + "NUMBER_OF_BYTES-eng": "24787", + "NUMBER_OF_FRAMES-eng": "608", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:43:21", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "City of God (2002)/Cidade.de.Deus.[City.Of.God].2002.BRRip.H264.AAC.5.1ch.Gopo.mp4": { + "format": { + "bit_rate": "2218158", + "duration": "7767.231667", + "filename": "City of God (2002)/Cidade.de.Deus.[City.Of.God].2002.BRRip.H264.AAC.5.1ch.Gopo.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2153618662", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2009-11-29T13:34:19.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "1849012", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "104271/5000000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7767.188498", + "duration_ts": 19417971246, + "has_b_frames": 1, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "186226", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 104271, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-11-28T20:51:44.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/2500000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "365294", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7767.232000", + "duration_ts": 372827136, + "index": 1, + "max_bit_rate": "396168", + "nb_frames": "364089", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-11-29T13:46:43.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Heat/Heat[1995]DvDrip[Eng]-kirklestat.avi": { + "format": { + "bit_rate": "612340", + "duration": "9600.000000", + "filename": "Heat/Heat[1995]DvDrip[Eng]-kirklestat.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734808064", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "506633", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 228, + "coded_width": 552, + "display_aspect_ratio": "46:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9600.000000", + "duration_ts": 240000, + "has_b_frames": 1, + "height": 228, + "index": 0, + "level": 5, + "nb_frames": "240000", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 552 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "400000", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Last Samurai/The Last Samurai.avi": { + "format": { + "bit_rate": "907928", + "duration": "9249.657083", + "filename": "The Last Samurai/The Last Samurai.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1049753600", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "453220", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 224, + "coded_width": 528, + "display_aspect_ratio": "33:14", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9249.657083", + "duration_ts": 221770, + "has_b_frames": 1, + "height": 224, + "index": 0, + "level": 5, + "nb_frames": "221770", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 528 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "517979784", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Up (2009)/UP.(2009).mkv": { + "format": { + "bit_rate": "2434244", + "duration": "5804.047000", + "filename": "Up (2009)/UP.(2009).mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1766059040", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-10-26T02:41:26.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 864, + "coded_width": 1536, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 864, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "djXpire@x264-BB.com" + }, + "time_base": "1/1000", + "width": 1536 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "djXpire@x264-BB.com" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5804.047000", + "duration_ts": 5804047, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "djXpire@x264-BB.com" + }, + "time_base": "1/1000" + } + ] + }, + "Knick Knack (1989)/knick.knack.1989.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4612633", + "duration": "217.248000", + "filename": "Knick Knack (1989)/knick.knack.1989.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "125260674", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T03:03:26.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Nightmare Before Christmas (1993)/e3ff55f4b7454cc0b4b62088bc23d067.mkv": { + "format": { + "bit_rate": "6946295", + "duration": "4598.880000", + "filename": "The Nightmare Before Christmas (1993)/e3ff55f4b7454cc0b4b62088bc23d067.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 19, + "probe_score": 100, + "size": "3993147323", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-28T23:19:27Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 768, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "5:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 768, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 46, + "start_time": "0.046000", + "tags": { + "BPS-eng": "6096832", + "DURATION-eng": "01:16:38.511000000", + "NUMBER_OF_BYTES-eng": "3504543977", + "NUMBER_OF_FRAMES-eng": "110254", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:16:38.880000000", + "NUMBER_OF_BYTES-eng": "367910400", + "NUMBER_OF_FRAMES-eng": "143715", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30048", + "DURATION-eng": "01:10:45.658000000", + "NUMBER_OF_BYTES-eng": "15946958", + "NUMBER_OF_FRAMES-eng": "1610", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31169", + "DURATION-eng": "01:10:34.564000000", + "NUMBER_OF_BYTES-eng": "16498498", + "NUMBER_OF_FRAMES-eng": "1690", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29616", + "DURATION-eng": "01:10:43.656000000", + "NUMBER_OF_BYTES-eng": "15710317", + "NUMBER_OF_FRAMES-eng": "1640", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29409", + "DURATION-eng": "01:10:45.575000000", + "NUMBER_OF_BYTES-eng": "15607559", + "NUMBER_OF_FRAMES-eng": "1654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "25847", + "DURATION-eng": "01:10:45.867000000", + "NUMBER_OF_BYTES-eng": "13718268", + "NUMBER_OF_FRAMES-eng": "1464", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30096", + "DURATION-eng": "01:10:33.813000000", + "NUMBER_OF_BYTES-eng": "15927953", + "NUMBER_OF_FRAMES-eng": "1650", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27871", + "DURATION-eng": "01:11:45.969000000", + "NUMBER_OF_BYTES-eng": "15001926", + "NUMBER_OF_FRAMES-eng": "1656", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28456", + "DURATION-eng": "01:10:43.656000000", + "NUMBER_OF_BYTES-eng": "15094890", + "NUMBER_OF_FRAMES-eng": "1654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28918", + "DURATION-eng": "01:10:45.575000000", + "NUMBER_OF_BYTES-eng": "15347144", + "NUMBER_OF_FRAMES-eng": "1644", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "slo" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26576", + "DURATION-eng": "01:10:45.867000000", + "NUMBER_OF_BYTES-eng": "14105183", + "NUMBER_OF_FRAMES-eng": "1654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "ukr" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29315", + "DURATION-eng": "01:10:43.656000000", + "NUMBER_OF_BYTES-eng": "15550854", + "NUMBER_OF_FRAMES-eng": "1648", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19694", + "DURATION-eng": "01:11:41.506000000", + "NUMBER_OF_BYTES-eng": "10589680", + "NUMBER_OF_FRAMES-eng": "1652", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27714", + "DURATION-eng": "01:10:45.616000000", + "NUMBER_OF_BYTES-eng": "14708288", + "NUMBER_OF_FRAMES-eng": "1654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "17058", + "DURATION-eng": "01:10:45.658000000", + "NUMBER_OF_BYTES-eng": "9052919", + "NUMBER_OF_FRAMES-eng": "1654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30142", + "DURATION-eng": "01:10:45.658000000", + "NUMBER_OF_BYTES-eng": "15996616", + "NUMBER_OF_FRAMES-eng": "1654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "srp" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24306", + "DURATION-eng": "01:10:45.658000000", + "NUMBER_OF_BYTES-eng": "12899578", + "NUMBER_OF_FRAMES-eng": "1648", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "hrv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4598.880000", + "duration_ts": 4598880, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "20321", + "DURATION-eng": "01:10:45.658000000", + "NUMBER_OF_BYTES-eng": "10784538", + "NUMBER_OF_FRAMES-eng": "1650", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-29 21:46:22", + "language": "slv" + }, + "time_base": "1/1000" + } + ] + }, + "Abraham Lincoln Vampire Hunter (2012)/alli-alvh-xvid-cd1.avi": { + "format": { + "bit_rate": "1865669", + "duration": "3136.633500", + "filename": "Abraham Lincoln Vampire Hunter (2012)/alli-alvh-xvid-cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731490304", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1408292", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3136.633500", + "duration_ts": 75204, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "75204", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "175651476", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Jurassic World Fallen Kingdom (2018)/4cbd2324f7f54c66a372da78eaeecf48.mkv": { + "format": { + "bit_rate": "4991593", + "duration": "7697.984000", + "filename": "Jurassic World Fallen Kingdom (2018)/4cbd2324f7f54c66a372da78eaeecf48.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4803150686", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-09-04T04:49:08.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "4605470", + "DURATION-eng": "02:08:17.940000000", + "NUMBER_OF_BYTES-eng": "4431579872", + "NUMBER_OF_FRAMES-eng": "184566", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-04 04:49:08", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:08:17.984000000", + "NUMBER_OF_BYTES-eng": "369503232", + "NUMBER_OF_FRAMES-eng": "240562", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-04 04:49:08", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7697.984000", + "duration_ts": 7697984, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48", + "DURATION-eng": "02:07:04.082000000", + "NUMBER_OF_BYTES-eng": "46497", + "NUMBER_OF_FRAMES-eng": "1771", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-04 04:49:08", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7697.984000", + "duration_ts": 7697984, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "41", + "DURATION-eng": "01:56:22.691000000", + "NUMBER_OF_BYTES-eng": "35857", + "NUMBER_OF_FRAMES-eng": "1295", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-04 04:49:08", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7697.984000", + "duration_ts": 7697984, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "01:56:22.941000000", + "NUMBER_OF_BYTES-eng": "36905", + "NUMBER_OF_FRAMES-eng": "1294", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-04 04:49:08", + "language": "spa" + }, + "time_base": "1/1000" + } + ] + }, + "Terminator 2 (1991)/Terminator.2-Judgment.Day[1991]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "762899", + "duration": "8813.000000", + "filename": "Terminator 2 (1991)/Terminator.2-Judgment.Day[1991]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "840429568", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "641194", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 262, + "coded_width": 624, + "display_aspect_ratio": "312:131", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8813.000000", + "duration_ts": 220325, + "has_b_frames": 1, + "height": 262, + "index": 0, + "level": 5, + "nb_frames": "220325", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "367208", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Hackers/Hackers swe.avi": { + "format": { + "bit_rate": "981066", + "duration": "5970.520000", + "filename": "Hackers/Hackers swe.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732184576", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "840156", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5970.520000", + "duration_ts": 149263, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "149263", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127992", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5970.504000", + "duration_ts": 248771, + "index": 1, + "nb_frames": "248771", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Ice Storm (1997)/The Ice Storm- Criterion.avi": { + "format": { + "bit_rate": "1725776", + "duration": "6805.340208", + "filename": "The Ice Storm (1997)/The Ice Storm- Criterion.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1468061696", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "IAS2": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1460498", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6805.340208", + "duration_ts": 163165, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "163165", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "283520", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "nb_frames": "283520", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Dave Chappelle Deep In The Heart Of Texas (2017)/Dave.Chappelle.Deep.in.the.Heart.of.Texas.2017.720p.WEBRip.X264-DEFLATE.mkv": { + "format": { + "bit_rate": "2787368", + "duration": "3972.168000", + "filename": "Dave Chappelle Deep In The Heart Of Texas (2017)/Dave.Chappelle.Deep.in.the.Heart.of.Texas.2017.720p.WEBRip.X264-DEFLATE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "1383987234", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:12.168000000", + "ENCODER": "Lavc57.64.101 libx264", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:12.128000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3972.168000", + "duration_ts": 3972168, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:02.696000000", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3972.168000", + "duration_ts": 3972168, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:03.764000000", + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3972.168000", + "duration_ts": 3972168, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:07.267000000", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3972.168000", + "duration_ts": 3972168, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:07.263000000", + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3972.168000", + "duration_ts": 3972168, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:06:07.668000000", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + } + ] + }, + "Madagascar (2005)/Madagascar 2005.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1664140", + "duration": "5158.110000", + "filename": "Madagascar (2005)/Madagascar 2005.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1072977374", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-06-19T00:23:19.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1566282", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5158.111292", + "duration_ts": 495178684, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "123671", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-06-19T00:23:19.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5158.103946", + "duration_ts": 227472384, + "index": 1, + "max_bit_rate": "105240", + "nb_frames": "222141", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-19T00:26:18.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/44100" + } + ] + }, + "Stargate (1994)/Stargate[1994]DVDRip[AC3]-tots.avi": { + "format": { + "bit_rate": "1505404", + "duration": "7804.505042", + "filename": "Stargate (1994)/Stargate[1994]DVDRip[AC3]-tots.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1468616704", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1050696", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 704, + "display_aspect_ratio": "44:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7804.505042", + "duration_ts": 187121, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "187121", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "437052282", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Che Part Two/Che Part 2.mp4": { + "format": { + "bit_rate": "2228709", + "duration": "8104.873333", + "filename": "Che Part Two/Che Part 2.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2257925893", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2009-06-28T05:39:45.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "1947791", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8104.817993", + "duration_ts": 542155590, + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "194321", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2790, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-06-26T12:12:18.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "277187", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8104.874667", + "duration_ts": 389033984, + "index": 1, + "max_bit_rate": "411248", + "nb_frames": "379916", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-06-28T05:41:41.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Dead Like Me Life After Death (2009)/dead.like.me.life.after.death.2009.720p.web.x264-regret.mkv": { + "format": { + "bit_rate": "3323625", + "duration": "5240.031000", + "filename": "Dead Like Me Life After Death (2009)/dead.like.me.life.after.death.2009.720p.web.x264-regret.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2176987711", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-31T02:42:02.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "500/21", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "21/1000", + "codec_type": "video", + "coded_height": 716, + "coded_width": 1280, + "display_aspect_ratio": "320:179", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 716, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "500/21", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "3192937", + "BPS-eng": "3192937", + "DURATION": "01:27:19.948000000", + "DURATION-eng": "01:27:19.948000000", + "NUMBER_OF_BYTES": "2091353299", + "NUMBER_OF_BYTES-eng": "2091353299", + "NUMBER_OF_FRAMES": "125623", + "NUMBER_OF_FRAMES-eng": "125623", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-31 02:42:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-31 02:42:02" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "127696", + "BPS-eng": "127696", + "DURATION": "01:27:19.999000000", + "DURATION-eng": "01:27:19.999000000", + "NUMBER_OF_BYTES": "83640892", + "NUMBER_OF_BYTES-eng": "83640892", + "NUMBER_OF_FRAMES": "245046", + "NUMBER_OF_FRAMES-eng": "245046", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-31 02:42:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-31 02:42:02", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5240.031000", + "duration_ts": 5240031, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:25:09.138000000", + "DURATION-eng": "01:25:09.138000000", + "NUMBER_OF_BYTES": "53709", + "NUMBER_OF_BYTES-eng": "53709", + "NUMBER_OF_FRAMES": "1598", + "NUMBER_OF_FRAMES-eng": "1598", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2016-05-31 02:42:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-05-31 02:42:02", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Jurassic World (2015)/Jurassic.World.2015.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1503904", + "duration": "7461.161667", + "filename": "Jurassic World (2015)/Jurassic.World.2015.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1402609567", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-09-25T18:57:07.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64893", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7461.162667", + "duration_ts": 358135808, + "index": 0, + "max_bit_rate": "129840", + "nb_frames": "349742", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-09-25T18:53:03.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1434877", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 640, + "coded_width": 1280, + "display_aspect_ratio": "2:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7461.120333", + "duration_ts": 179066888, + "has_b_frames": 2, + "height": 640, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "178888", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-09-25T18:57:10.000000Z", + "handler_name": "World.2015.BluRay.720p.H264.avs.264@GPAC0.5.1-DEV-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Babylon 5 - To Live And Die In Starlight/Babylon 5 -The Legend Of The Rangers - To Live And Die In Starlight.avi": { + "format": { + "bit_rate": "1083567", + "duration": "5395.195195", + "filename": "Babylon 5 - To Live And Die In Starlight/Babylon 5 -The Legend Of The Rangers - To Live And Die In Starlight.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "730757120", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "880128", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5395.195195", + "duration_ts": 161694, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": -99, + "nb_frames": "161694", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "191712", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "129286528", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/23964" + } + ] + }, + "Vanilla Sky (2001)/Vanilla Sky KLAXXON.avi": { + "format": { + "bit_rate": "1582266", + "duration": "7460.000000", + "filename": "Vanilla Sky (2001)/Vanilla Sky KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1475463168", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1124608", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 592, + "display_aspect_ratio": "37:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7460.000000", + "duration_ts": 186500, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "186500", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "417760000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Bird Box (2018)/754b2abb7297427d81e2dd07343ade94.mkv": { + "format": { + "bit_rate": "9154868", + "duration": "7428.000000", + "filename": "Bird Box (2018)/754b2abb7297427d81e2dd07343ade94.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 30, + "probe_score": 100, + "size": "8500295513", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-12-21T00:18:00.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ara", + "title": "Arabic" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "bul", + "title": "Bulgarian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "Chinese (Simplified)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "Chinese (Traditional)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger", + "title": "German" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "gre", + "title": "Greek" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "heb", + "title": "Hebrew" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ind", + "title": "Indonesian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "kor", + "title": "Korean" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Portuguese (Brazilian)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum", + "title": "Romanian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rus", + "title": "Russian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tha", + "title": "Thai" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.000000", + "duration_ts": 7428000, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur", + "title": "Turkish" + }, + "time_base": "1/1000" + } + ] + }, + "Get Out (2017)/4b79bfbb5c11406688da2f297a53ce61.mkv": { + "format": { + "bit_rate": "5157292", + "duration": "6245.246000", + "filename": "Get Out (2017)/4b79bfbb5c11406688da2f297a53ce61.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 23, + "probe_score": 100, + "size": "4026070187", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-29T02:28:10.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Get Out" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4549186", + "DURATION-eng": "01:44:05.156000000", + "NUMBER_OF_BYTES-eng": "3551297219", + "NUMBER_OF_FRAMES-eng": "149734", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "425473", + "DURATION-eng": "01:44:05.162000000", + "NUMBER_OF_BYTES-eng": "332143689", + "NUMBER_OF_FRAMES-eng": "292742", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS-eng": "65854", + "DURATION-eng": "01:44:05.206000000", + "NUMBER_OF_BYTES-eng": "51409440", + "NUMBER_OF_FRAMES-eng": "146372", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "10172", + "DURATION-eng": "01:38:54.421000000", + "NUMBER_OF_BYTES-eng": "7546279", + "NUMBER_OF_FRAMES-eng": "1414", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "16516", + "DURATION-eng": "01:43:47.340000000", + "NUMBER_OF_BYTES-eng": "12856555", + "NUMBER_OF_FRAMES-eng": "1575", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3872", + "DURATION-eng": "01:43:05.209000000", + "NUMBER_OF_BYTES-eng": "2993856", + "NUMBER_OF_FRAMES-eng": "1183", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ara" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6936", + "DURATION-eng": "01:43:05.168000000", + "NUMBER_OF_BYTES-eng": "5362913", + "NUMBER_OF_FRAMES-eng": "868", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "dan" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7089", + "DURATION-eng": "01:43:05.001000000", + "NUMBER_OF_BYTES-eng": "5481362", + "NUMBER_OF_FRAMES-eng": "827", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "dut" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6310", + "DURATION-eng": "01:43:05.001000000", + "NUMBER_OF_BYTES-eng": "4878648", + "NUMBER_OF_FRAMES-eng": "837", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "fin" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6523", + "DURATION-eng": "01:43:05.126000000", + "NUMBER_OF_BYTES-eng": "5043495", + "NUMBER_OF_FRAMES-eng": "1176", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14973", + "DURATION-eng": "01:43:55.594000000", + "NUMBER_OF_BYTES-eng": "11671003", + "NUMBER_OF_FRAMES-eng": "1574", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "fre", + "title": "Commentary" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7461", + "DURATION-eng": "01:43:05.168000000", + "NUMBER_OF_BYTES-eng": "5768617", + "NUMBER_OF_FRAMES-eng": "974", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ger" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "65", + "DURATION-eng": "00:28:49.758000000", + "NUMBER_OF_BYTES-eng": "14238", + "NUMBER_OF_FRAMES-eng": "3", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ger", + "title": "Forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14118", + "DURATION-eng": "01:43:55.594000000", + "NUMBER_OF_BYTES-eng": "11004647", + "NUMBER_OF_FRAMES-eng": "1575", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ger", + "title": "Commentary" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6602", + "DURATION-eng": "01:43:05.209000000", + "NUMBER_OF_BYTES-eng": "5104450", + "NUMBER_OF_FRAMES-eng": "1190", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "hin" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "8634", + "DURATION-eng": "01:43:05.209000000", + "NUMBER_OF_BYTES-eng": "6675548", + "NUMBER_OF_FRAMES-eng": "1184", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ice" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7446", + "DURATION-eng": "01:43:05.209000000", + "NUMBER_OF_BYTES-eng": "5757434", + "NUMBER_OF_FRAMES-eng": "1189", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ita" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15061", + "DURATION-eng": "01:43:55.594000000", + "NUMBER_OF_BYTES-eng": "11739990", + "NUMBER_OF_FRAMES-eng": "1578", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "ita", + "title": "Commentary" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6131", + "DURATION-eng": "01:43:05.209000000", + "NUMBER_OF_BYTES-eng": "4740348", + "NUMBER_OF_FRAMES-eng": "966", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "nob" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7498", + "DURATION-eng": "01:43:24.228000000", + "NUMBER_OF_BYTES-eng": "5815186", + "NUMBER_OF_FRAMES-eng": "1082", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "por" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7780", + "DURATION-eng": "01:43:05.043000000", + "NUMBER_OF_BYTES-eng": "6015312", + "NUMBER_OF_FRAMES-eng": "1219", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14432", + "DURATION-eng": "01:43:55.594000000", + "NUMBER_OF_BYTES-eng": "11249492", + "NUMBER_OF_FRAMES-eng": "1577", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "spa", + "title": "Commentary" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.246000", + "duration_ts": 6245246, + "height": 1080, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7573", + "DURATION-eng": "01:43:05.209000000", + "NUMBER_OF_BYTES-eng": "5855169", + "NUMBER_OF_FRAMES-eng": "967", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-29 02:28:10", + "language": "swe" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Little Nemo Adventures In Slumberland (1989)/little.nemo.adventures.in.slumberland.1989.720p.bluray.x264-hd4u.mkv": { + "format": { + "bit_rate": "3290416", + "duration": "5694.489000", + "filename": "Little Nemo Adventures In Slumberland (1989)/little.nemo.adventures.in.slumberland.1989.720p.bluray.x264-hd4u.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2342154811", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 696, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5694.489000", + "duration_ts": 5694489, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Juno (2007)/Juno[2007]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1020359", + "duration": "5764.973307", + "filename": "Juno (2007)/Juno[2007]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735293440", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "883051", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 334, + "coded_width": 628, + "display_aspect_ratio": "314:167", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5764.973307", + "duration_ts": 138221, + "has_b_frames": 1, + "height": 334, + "index": 0, + "level": 5, + "nb_frames": "138221", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 628 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "240207", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Piper (2016)/119b9edbcb3649fd8b923e4e8e16ec15.mkv": { + "format": { + "bit_rate": "29162948", + "duration": "365.699000", + "filename": "Piper (2016)/119b9edbcb3649fd8b923e4e8e16ec15.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "1333107640", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-18T14:42:06.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Piper (2016)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 4, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23790236", + "DURATION-eng": "00:06:05.699000000", + "NUMBER_OF_BYTES-eng": "1087508233", + "NUMBER_OF_FRAMES-eng": "8768", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "eng", + "title": "MPEG-4 AVC Video / 24105 kbps / 1080p / 23.976 fps / 16:9 / High Profile 4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4737178", + "DURATION-eng": "00:06:05.696000000", + "NUMBER_OF_BYTES-eng": "216545892", + "NUMBER_OF_FRAMES-eng": "34284", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "eng", + "title": "DTS-HD Master Audio / 7.1 / 48 kHz / 4737 kbps / 24-bit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "320000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "320000", + "DURATION-eng": "00:06:05.696000000", + "NUMBER_OF_BYTES-eng": "14627840", + "NUMBER_OF_FRAMES-eng": "11428", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "eng", + "title": "Commentary by director/writer Alan Barillaro and editor Sarah Reimers" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "365.699000", + "duration_ts": 365699, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "77889", + "DURATION-eng": "00:05:56.523000000", + "NUMBER_OF_BYTES-eng": "3471153", + "NUMBER_OF_FRAMES-eng": "260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "eng", + "title": "Commentary by director/writer Alan Barillaro and editor Sarah Reimers" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "365.699000", + "duration_ts": 365699, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "50771", + "DURATION-eng": "00:05:56.523000000", + "NUMBER_OF_BYTES-eng": "2262632", + "NUMBER_OF_FRAMES-eng": "260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "chi", + "title": "Commentary by director/writer Alan Barillaro and editor Sarah Reimers" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "365.699000", + "duration_ts": 365699, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42443", + "DURATION-eng": "00:05:56.523000000", + "NUMBER_OF_BYTES-eng": "1891502", + "NUMBER_OF_FRAMES-eng": "260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "kor", + "title": "Commentary by director/writer Alan Barillaro and editor Sarah Reimers" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "365.699000", + "duration_ts": 365699, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "76209", + "DURATION-eng": "00:05:56.523000000", + "NUMBER_OF_BYTES-eng": "3396311", + "NUMBER_OF_FRAMES-eng": "260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "por", + "title": "Commentary by director/writer Alan Barillaro and editor Sarah Reimers" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "365.699000", + "duration_ts": 365699, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "71117", + "DURATION-eng": "00:05:56.523000000", + "NUMBER_OF_BYTES-eng": "3169368", + "NUMBER_OF_FRAMES-eng": "260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-18 14:42:06", + "language": "rus", + "title": "Commentary by director/writer Alan Barillaro and editor Sarah Reimers" + }, + "time_base": "1/1000" + } + ] + }, + "The Mule (2018)/62600bd3932949f88a46ba78c25d051a.mkv": { + "format": { + "bit_rate": "4955699", + "duration": "6981.856000", + "filename": "The Mule (2018)/62600bd3932949f88a46ba78c25d051a.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "4324997178", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-19T07:19:24.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "The.Mule.2018.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "4569830", + "DURATION-eng": "01:56:21.808000000", + "NUMBER_OF_BYTES-eng": "3988210030", + "NUMBER_OF_FRAMES-eng": "167396", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-19 07:19:24", + "language": "eng", + "title": "The.Mule.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:56:21.856000000", + "NUMBER_OF_BYTES-eng": "335129088", + "NUMBER_OF_FRAMES-eng": "218183", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-19 07:19:24", + "language": "eng", + "title": "The.Mule.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6981.856000", + "duration_ts": 628367040, + "has_b_frames": 0, + "height": 882, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6981.856000", + "duration_ts": 628367040, + "has_b_frames": 0, + "height": 600, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6981.856000", + "duration_ts": 628367040, + "has_b_frames": 0, + "height": 176, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6981.856000", + "duration_ts": 628367040, + "has_b_frames": 0, + "height": 120, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + } + ] + }, + "88 Minutes/88 Minutes.avi": { + "format": { + "bit_rate": "909259", + "duration": "6464.839840", + "filename": "88 Minutes/88 Minutes.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734777344", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "787952", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 312, + "coded_width": 572, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6464.839840", + "duration_ts": 155001, + "has_b_frames": 1, + "height": 312, + "index": 0, + "level": 5, + "nb_frames": "155001", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 572 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "269368", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Transformers/Transformers.2007.nHD.720p.x264.NhaNc3.mkv": { + "format": { + "bit_rate": "2385377", + "duration": "8606.656000", + "filename": "Transformers/Transformers.2007.nHD.720p.x264.NhaNc3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2566265606", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-30T08:20:02.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 544, + "coded_width": 960, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "4:3", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "In Debt We Trust/In.Debt.We.Trust.America.Before.the.Bubble.Bursts.XviD.AC3.www.mvgroup.org.avi": { + "format": { + "bit_rate": "1752196", + "duration": "5359.850216", + "filename": "In Debt We Trust/In.Debt.We.Trust.America.Before.the.Bubble.Bursts.XviD.AC3.www.mvgroup.org.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1173938932", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.7, Aug 8 2006 20:59:17" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1554748", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5359.850216", + "duration_ts": 128508, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "128508", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "128636928", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "In.Debt.We T80 2_0ch 192Kbps DELAY 0ms" + }, + "time_base": "1/24000" + } + ] + }, + "Futurama - Bender's Game (2008)/Futurama - Bender's Game [2008].avi": { + "format": { + "bit_rate": "1520978", + "duration": "5245.990750", + "filename": "Futurama - Bender's Game (2008)/Futurama - Bender's Game [2008].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "997380096", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1066271", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5245.990750", + "duration_ts": 125778, + "has_b_frames": 0, + "height": 416, + "index": 0, + "level": 0, + "nb_frames": "125778", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "293773312", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Moving Art Flowers (2014)/f540ab1073c04d8b8926938aeb5aabe4.mkv": { + "format": { + "bit_rate": "10763143", + "duration": "1530.059000", + "filename": "Moving Art Flowers (2014)/f540ab1073c04d8b8926938aeb5aabe4.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2058530495", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-22T18:07:17.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "10522588", + "BPS-eng": "10522588", + "DURATION": "00:25:30.029000000", + "DURATION-eng": "00:25:30.029000000", + "NUMBER_OF_BYTES": "2012483289", + "NUMBER_OF_BYTES-eng": "2012483289", + "NUMBER_OF_FRAMES": "36684", + "NUMBER_OF_FRAMES-eng": "36684", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-22 18:07:17", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-22 18:07:17" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "FLAC (Free Lossless Audio Codec)", + "codec_name": "flac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "238866", + "BPS-eng": "238866", + "DURATION": "00:25:30.059000000", + "DURATION-eng": "00:25:30.059000000", + "NUMBER_OF_BYTES": "45684988", + "NUMBER_OF_BYTES-eng": "45684988", + "NUMBER_OF_FRAMES": "17931", + "NUMBER_OF_FRAMES-eng": "17931", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-22 18:07:17", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-22 18:07:17", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Big Trouble In Little China/Big Trouble In Little China.m4v": { + "format": { + "bit_rate": "1748497", + "duration": "5987.680000", + "filename": "Big Trouble In Little China/Big Trouble In Little China.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1308680379", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-06T23:20:44.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1291914000/53888737", + "bit_rate": "1129775", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "44330038/2125512673", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "427:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5987.637444", + "duration_ts": 538887370, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "143546", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60/1", + "refs": 1, + "sample_aspect_ratio": "427:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T23:20:44.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165437", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5987.669333", + "duration_ts": 287408128, + "index": 1, + "max_bit_rate": "268904", + "nb_frames": "280672", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T23:20:44.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "4.1", + "channels": 5, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "5987.680000", + "duration_ts": 287408640, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "187115", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T23:20:44.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Girl Who Played With Fire (2009)/e7d6cb79e8dd4fd39a6e48a236c8faa8.mkv": { + "format": { + "bit_rate": "8775283", + "duration": "7772.515000", + "filename": "The Girl Who Played With Fire (2009)/e7d6cb79e8dd4fd39a6e48a236c8faa8.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8525753041", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.3 (date: 2010 aug 28)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7772.515000", + "duration_ts": 7772515, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Mary Poppins (1964)/MARY POPPINS 1964 720p.mkv": { + "format": { + "bit_rate": "6904920", + "duration": "8346.304000", + "filename": "Mary Poppins (1964)/MARY POPPINS 1964 720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "7203821193", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf56.30.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 772, + "coded_width": 1280, + "display_aspect_ratio": "57280:32231", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 772, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "179:167", + "start_pts": 125, + "start_time": "0.125000", + "tags": { + "title": "h264_qsync_hw 1280x772 16/9", + "track": "0" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "576000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "LANGUAGE": "English", + "title": "ac3 48000Hz 6Ch.", + "track": "1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "576000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "LANGUAGE": "Dutch", + "title": "ac3 48000Hz 6Ch.", + "track": "2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8346.304000", + "duration_ts": 8346304, + "height": 772, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "LANGUAGE": "Dutch", + "title": "dvd_subtitle 1280x772", + "track": "3" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "GATTACA/GATTACA.m4v": { + "format": { + "bit_rate": "1231791", + "duration": "6385.312000", + "filename": "GATTACA/GATTACA.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "983171861", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-06T20:12:42.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "765415000/31926311", + "bit_rate": "709875", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "31926311/1530830000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "431:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6385.262200", + "duration_ts": 574673598, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "153083", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "431:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T20:12:42.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132678", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6385.301333", + "duration_ts": 306494464, + "index": 1, + "max_bit_rate": "203328", + "nb_frames": "299311", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T20:12:42.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6385.312000", + "duration_ts": 306494976, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "199541", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T20:12:42.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Hunger Games (2012)/The Hunger Games[2012]BRRip XviD-ETRG.avi": { + "format": { + "bit_rate": "686457", + "duration": "8553.378167", + "filename": "The Hunger Games (2012)/The Hunger Games[2012]BRRip XviD-ETRG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733941264", + "start_time": "0.000000", + "tags": { + "copyright": "SaM" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "565097", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 256, + "coded_width": 624, + "display_aspect_ratio": "39:16", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8553.378167", + "duration_ts": 205076, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "205076", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "119747294", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Unbearable Lightness Of Being/Unbearable.Lightness.Of.Being Part 1.avi": { + "format": { + "bit_rate": "1659692", + "duration": "3539.748106", + "filename": "Unbearable Lightness Of Being/Unbearable.Lightness.Of.Being Part 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734361600", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "12570329/524288", + "bit_rate": "1460985", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "524288/12570329", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3539.748106", + "duration_ts": 84869, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "84869", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "12570329/524288", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "524288/12570329", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "84953955", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Downsizing (2017)/downsizing.2017.720p.bluray.x264-geckos.mkv": { + "format": { + "bit_rate": "4241259", + "duration": "8120.404000", + "filename": "Downsizing (2017)/downsizing.2017.720p.bluray.x264-geckos.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4305092605", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "49280:20737", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "231:233", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:15:20.404000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:15:20.404000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "A Simple Favor (2018)/249c2f54b95c425bbf5e6bfe234231d5.mkv": { + "format": { + "bit_rate": "12201503", + "duration": "7010.626000", + "filename": "A Simple Favor (2018)/249c2f54b95c425bbf5e6bfe234231d5.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "10692522024", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-12-08T07:38:44.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 960, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "2:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 960, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "8910059", + "DURATION-eng": "01:56:50.626000000", + "NUMBER_OF_BYTES-eng": "7808137196", + "NUMBER_OF_FRAMES-eng": "168073", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-08 07:38:44" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "TrueHD", + "codec_name": "truehd", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s32", + "sample_rate": "48000", + "start_pts": 1, + "start_time": "0.001000", + "tags": { + "BPS-eng": "3222432", + "DURATION-eng": "01:56:50.553000000", + "NUMBER_OF_BYTES-eng": "2823878856", + "NUMBER_OF_FRAMES-eng": "8411927", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-08 07:38:44", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7010.626000", + "duration_ts": 7010626, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "81", + "DURATION-eng": "01:50:10.267000000", + "NUMBER_OF_BYTES-eng": "67148", + "NUMBER_OF_FRAMES-eng": "2195", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v28.2.0 ('The Awakening') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-08 07:38:44", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + } + ] + }, + "Riddick (2013)/Riddick.2013.EXTENDED.720p.BRRip.1.1GB.MkvCage.mkv": { + "format": { + "bit_rate": "1250045", + "duration": "7607.583000", + "filename": "Riddick (2013)/Riddick.2013.EXTENDED.720p.BRRip.1.1GB.MkvCage.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1188728254", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-06-06T14:23:30.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "Riddick.2013.EXTENDED.720p.BRRip.1.1GB.MkvCage" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1151083", + "BPS-eng": "1151083", + "DURATION": "02:06:47.558000000", + "DURATION-eng": "02:06:47.558000000", + "NUMBER_OF_BYTES": "1094616815", + "NUMBER_OF_BYTES-eng": "1094616815", + "NUMBER_OF_FRAMES": "182399", + "NUMBER_OF_FRAMES-eng": "182399", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2015-06-06 14:23:30", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-06-06 14:23:30" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "97085", + "BPS-eng": "97085", + "DURATION": "02:06:47.552000000", + "DURATION-eng": "02:06:47.552000000", + "NUMBER_OF_BYTES": "92322565", + "NUMBER_OF_BYTES-eng": "92322565", + "NUMBER_OF_FRAMES": "178302", + "NUMBER_OF_FRAMES-eng": "178302", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2015-06-06 14:23:30", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-06-06 14:23:30", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7607.583000", + "duration_ts": 7607583, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "02:01:36.881000000", + "DURATION-eng": "02:01:36.881000000", + "NUMBER_OF_BYTES": "28790", + "NUMBER_OF_BYTES-eng": "28790", + "NUMBER_OF_FRAMES": "894", + "NUMBER_OF_FRAMES-eng": "894", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2015-06-06 14:23:30", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-06-06 14:23:30", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Flight of the Conchords: A Texan Odyssey (2006)/Flight of the Conchords - A Texan Odyssey.avi": { + "format": { + "bit_rate": "1202053", + "duration": "2642.222917", + "filename": "Flight of the Conchords: A Texan Odyssey (2006)/Flight of the Conchords - A Texan Odyssey.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "397011780", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1065668", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "2642.222917", + "duration_ts": 63350, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 5, + "nb_frames": "63350", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "42274779", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Guardians Of The Galaxy Vol 2 (2017)/guardians.of.the.galaxy.vol.2.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4386537", + "duration": "8161.569000", + "filename": "Guardians Of The Galaxy Vol 2 (2017)/guardians.of.the.galaxy.vol.2.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4475128881", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-07T13:26:09.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8161.569000", + "duration_ts": 8161569, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 536, + "index": 1, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Austin Powers In Goldmember (2002)/Austin.Powers.in.Goldmember.2002.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "9930673", + "duration": "5671.708000", + "filename": "Austin Powers In Goldmember (2002)/Austin.Powers.in.Goldmember.2002.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7040485396", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-29T08:26:57.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8194031", + "BPS-eng": "8194031", + "DURATION": "01:34:31.708000000", + "DURATION-eng": "01:34:31.708000000", + "NUMBER_OF_BYTES": "5809269509", + "NUMBER_OF_BYTES-eng": "5809269509", + "NUMBER_OF_FRAMES": "135985", + "NUMBER_OF_FRAMES-eng": "135985", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-29 08:26:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-29 08:26:57", + "language": "eng", + "title": "PRoDJi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509749", + "BPS-eng": "1509749", + "DURATION": "01:34:31.702000000", + "DURATION-eng": "01:34:31.702000000", + "NUMBER_OF_BYTES": "1070356386", + "NUMBER_OF_BYTES-eng": "1070356386", + "NUMBER_OF_FRAMES": "531722", + "NUMBER_OF_FRAMES-eng": "531722", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-29 08:26:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-29 08:26:57", + "language": "eng", + "title": "English DTS@1510Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 850, + "start_time": "0.850000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "01:34:30.848000000", + "DURATION-eng": "01:34:30.848000000", + "NUMBER_OF_BYTES": "158783744", + "NUMBER_OF_BYTES-eng": "158783744", + "NUMBER_OF_FRAMES": "177214", + "NUMBER_OF_FRAMES-eng": "177214", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-29 08:26:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-29 08:26:57", + "language": "tur", + "title": "AC3@224Kbps 2 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5671.708000", + "duration_ts": 5671708, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "01:27:09.390000000", + "DURATION-eng": "01:27:09.390000000", + "NUMBER_OF_BYTES": "41725", + "NUMBER_OF_BYTES-eng": "41725", + "NUMBER_OF_FRAMES": "1293", + "NUMBER_OF_FRAMES-eng": "1293", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-29 08:26:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-29 08:26:57", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5671.708000", + "duration_ts": 5671708, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "61", + "BPS-eng": "61", + "DURATION": "01:27:28.296000000", + "DURATION-eng": "01:27:28.296000000", + "NUMBER_OF_BYTES": "40307", + "NUMBER_OF_BYTES-eng": "40307", + "NUMBER_OF_FRAMES": "877", + "NUMBER_OF_FRAMES-eng": "877", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v17.0.0 ('Be Ur Friend') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-29 08:26:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-29 08:26:57", + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Stargate The Ark Of Truth/Stargate.The.Ark.Of.Truth.2008.1080p.HDTV.x264-hV.mkv": { + "format": { + "bit_rate": "9619813", + "duration": "5859.360000", + "filename": "Stargate The Ark Of Truth/Stargate.The.Ark.Of.Truth.2008.1080p.HDTV.x264-hV.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7045743800", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-26T08:13:25.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Godfather/Godfather.avi": { + "format": { + "bit_rate": "1038982", + "duration": "10083.960000", + "filename": "Godfather/Godfather.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1309632512", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2439/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "899848", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "10083.960000", + "duration_ts": 252099, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "252099", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126232", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10083.960000", + "duration_ts": 420165, + "index": 1, + "nb_frames": "420165", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Trinity And Beyond - The Atomic Bomb Movie (1995)/Trinity.And.Beyond.The.Atomic.Bomb.Movie.(1995).DivX.avi": { + "format": { + "bit_rate": "1061908", + "duration": "5460.460460", + "filename": "Trinity And Beyond - The Atomic Bomb Movie (1995)/Trinity.And.Beyond.The.Atomic.Bomb.Movie.(1995).DivX.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "724813824", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "956533", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 624, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5460.460460", + "duration_ts": 130920, + "has_b_frames": 0, + "height": 480, + "index": 0, + "level": -99, + "nb_frames": "130920", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "65524936", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/12000" + } + ] + }, + "Planet Terror (2007)/Grindhouse-Planet.Terror[2007][Unrated.Edition]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "929170", + "duration": "6333.958959", + "filename": "Planet Terror (2007)/Grindhouse-Planet.Terror[2007][Unrated.Edition]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735666176", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "791879", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 616, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6333.958959", + "duration_ts": 151863, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "151863", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 616 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "263882", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Adjustment Bureau (2011)/The.Adjustment.Bureau.2011.1080p.BluRay.x264-CiNEFiLE.mkv": { + "format": { + "bit_rate": "10738296", + "duration": "6350.347000", + "filename": "The Adjustment Bureau (2011)/The.Adjustment.Bureau.2011.1080p.BluRay.x264-CiNEFiLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8523988623", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-06-10T10:21:02.000000Z", + "encoder": "libebml v1.2.0 + libmatroska v1.1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6350.347000", + "duration_ts": 6350347, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Janeane Garofalo If I May (2016)/fa0517ae729944be915a12524799cc16.mkv": { + "format": { + "bit_rate": "10129115", + "duration": "3902.732000", + "filename": "Janeane Garofalo If I May (2016)/fa0517ae729944be915a12524799cc16.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4941403078", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-24T22:56:15.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9486921", + "BPS-eng": "9486921", + "DURATION": "01:05:02.732000000", + "DURATION-eng": "01:05:02.732000000", + "NUMBER_OF_BYTES": "4628113934", + "NUMBER_OF_BYTES-eng": "4628113934", + "NUMBER_OF_FRAMES": "93572", + "NUMBER_OF_FRAMES-eng": "93572", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-24 22:56:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-24 22:56:15" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:05:02.688000000", + "DURATION-eng": "01:05:02.688000000", + "NUMBER_OF_BYTES": "312215040", + "NUMBER_OF_BYTES-eng": "312215040", + "NUMBER_OF_FRAMES": "121959", + "NUMBER_OF_FRAMES-eng": "121959", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-24 22:56:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-24 22:56:15", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3902.732000", + "duration_ts": 3902732, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "116", + "BPS-eng": "116", + "DURATION": "01:04:37.367000000", + "DURATION-eng": "01:04:37.367000000", + "NUMBER_OF_BYTES": "56410", + "NUMBER_OF_BYTES-eng": "56410", + "NUMBER_OF_FRAMES": "1475", + "NUMBER_OF_FRAMES-eng": "1475", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-24 22:56:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-24 22:56:15", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Willy Wonka and the Chocolate Factory (1971)/Willy Wonka and the Chocolate Factory 1971 BRRip [MnM-RG H264].mp4": { + "format": { + "bit_rate": "1792848", + "duration": "5985.280000", + "filename": "Willy Wonka and the Chocolate Factory (1971)/Willy Wonka and the Chocolate Factory 1971 BRRip [MnM-RG H264].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1341337886", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-02-11T20:31:35.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1344849", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5985.229250", + "duration_ts": 143645502, + "has_b_frames": 1, + "height": 400, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "143502", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2011-02-11T20:31:35.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "317062", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5985.280000", + "duration_ts": 287293440, + "index": 1, + "max_bit_rate": "432960", + "nb_frames": "280560", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-02-11T20:32:28.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "125343", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5985.280000", + "duration_ts": 287293440, + "index": 2, + "max_bit_rate": "153240", + "nb_frames": "280560", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-02-11T20:33:06.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Oceans 12/Oceans 12 Disc 1.avi": { + "format": { + "bit_rate": "1424489", + "duration": "4122.747748", + "filename": "Oceans 12/Oceans 12 Disc 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734101504", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "967112", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4122.747748", + "duration_ts": 98847, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "98847", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "230871797", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Cloudy With A Chance Of Meatballs 2 (2013)/Cloudy.with.a.Chance.of.Meatballs.2.2013.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1114722", + "duration": "5689.770000", + "filename": "Cloudy With A Chance Of Meatballs 2 (2013)/Cloudy.with.a.Chance.of.Meatballs.2.2013.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "792814576", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-01-11T06:35:03.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1016878", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5689.684000", + "duration_ts": 136552416, + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "136416", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-01-11T06:35:03.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93735", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5689.770667", + "duration_ts": 273108992, + "index": 1, + "max_bit_rate": "106544", + "nb_frames": "266708", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-01-11T06:35:09.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Futurama - The Beast With A Billion Backs/Futurama - The Beast With A Billion Backs.mkv": { + "format": { + "bit_rate": "2253223", + "duration": "5329.991500", + "filename": "Futurama - The Beast With A Billion Backs/Futurama - The Beast With A Billion Backs.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1501207923", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "279:157", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "186:157", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "2012 (2009)/2012 (2009) BluRay 1080p Dual Audio D4V1.mkv": { + "format": { + "bit_rate": "2333775", + "duration": "9469.568000", + "filename": "2012 (2009)/2012 (2009) BluRay 1080p Dual Audio D4V1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2762480750", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-11-17T08:37:08.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9469.568000", + "duration_ts": 9469568, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Game Of Thrones The Story So Far (2018)/9e90ad62308d4b329773423b4c8ec77d.mkv": { + "format": { + "bit_rate": "2366492", + "duration": "5410.560000", + "filename": "Game Of Thrones The Story So Far (2018)/9e90ad62308d4b329773423b4c8ec77d.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1600506142", + "start_time": "0.000000", + "tags": { + "Tool": "Multi Group Release Encoder v34.9", + "encoder": "BiSH - SMACK baby SMACK (Live)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5410.560000", + "duration_ts": 5410560, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Split (2016)/8115ee71221d4b3e92032f23a2524295.mkv": { + "format": { + "bit_rate": "5393503", + "duration": "7027.881000", + "filename": "Split (2016)/8115ee71221d4b3e92032f23a2524295.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4738112529", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-29T02:50:20.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4969598", + "DURATION-eng": "01:57:07.854000000", + "NUMBER_OF_BYTES-eng": "4365701653", + "NUMBER_OF_FRAMES-eng": "168500", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-29 02:50:20" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "411666", + "DURATION-eng": "01:57:07.861000000", + "NUMBER_OF_BYTES-eng": "361641962", + "NUMBER_OF_FRAMES-eng": "329431", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-29 02:50:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7027.881000", + "duration_ts": 7027881, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33654", + "DURATION-eng": "01:51:18.463000000", + "NUMBER_OF_BYTES-eng": "28094689", + "NUMBER_OF_FRAMES-eng": "2883", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-29 02:50:20", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Lost Cat Corona (2017)/Lost Cat Corona (2017) HDRip.x264.AC3-Manning -usenethelp.org.mkv": { + "format": { + "bit_rate": "2264498", + "duration": "5026.656000", + "filename": "Lost Cat Corona (2017)/Lost Cat Corona (2017) HDRip.x264.AC3-Manning -usenethelp.org.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1422857014", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-28T10:59:53.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2", + "title": "Manning" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:23:46.656000000", + "DURATION-eng": "01:23:46.656000000", + "NUMBER_OF_BYTES": "241279488", + "NUMBER_OF_BYTES-eng": "241279488", + "NUMBER_OF_FRAMES": "157083", + "NUMBER_OF_FRAMES-eng": "157083", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.0.0 ('Til The Day That I Die') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.0.0 ('Til The Day That I Die') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-28 10:59:53", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-28 10:59:53", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 400, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1878783", + "BPS-eng": "1878783", + "DURATION": "01:23:46.647000000", + "DURATION-eng": "01:23:46.647000000", + "NUMBER_OF_BYTES": "1180497400", + "NUMBER_OF_BYTES-eng": "1180497400", + "NUMBER_OF_FRAMES": "120519", + "NUMBER_OF_FRAMES-eng": "120519", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.0.0 ('Til The Day That I Die') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.0.0 ('Til The Day That I Die') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-28 10:59:53", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-28 10:59:53" + }, + "time_base": "1/1000", + "width": 720 + } + ] + }, + "Lion King (2019)/7d37d1d31a7c48399c2741bd19efd361.mkv": { + "format": { + "bit_rate": "15552032", + "duration": "7095.344000", + "filename": "Lion King (2019)/7d37d1d31a7c48399c2741bd19efd361.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "13793377719", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-10-10T13:32:03.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7095.344000", + "duration_ts": 7095344, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Wine Country (2019)/6f7ab1758b39441a84ffef66112616bd.mkv": { + "format": { + "bit_rate": "3579920", + "duration": "6212.768000", + "filename": "Wine Country (2019)/6f7ab1758b39441a84ffef66112616bd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 43, + "probe_score": 100, + "size": "2780152020", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-10T07:05:03.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "CMRG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2932982", + "BPS-eng": "2932982", + "DURATION": "01:43:31.164000000", + "DURATION-eng": "01:43:31.164000000", + "NUMBER_OF_BYTES": "2277154073", + "NUMBER_OF_BYTES-eng": "2277154073", + "NUMBER_OF_FRAMES": "148919", + "NUMBER_OF_FRAMES-eng": "148919", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:43:32.768000000", + "DURATION-eng": "01:43:32.768000000", + "NUMBER_OF_BYTES": "497021440", + "NUMBER_OF_BYTES-eng": "497021440", + "NUMBER_OF_FRAMES": "194149", + "NUMBER_OF_FRAMES-eng": "194149", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "96", + "BPS-eng": "96", + "DURATION": "01:39:43.561000000", + "DURATION-eng": "01:39:43.561000000", + "NUMBER_OF_BYTES": "72007", + "NUMBER_OF_BYTES-eng": "72007", + "NUMBER_OF_FRAMES": "1980", + "NUMBER_OF_FRAMES-eng": "1980", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "108", + "BPS-eng": "108", + "DURATION": "01:39:52.612000000", + "DURATION-eng": "01:39:52.612000000", + "NUMBER_OF_BYTES": "81504", + "NUMBER_OF_BYTES-eng": "81504", + "NUMBER_OF_FRAMES": "2265", + "NUMBER_OF_FRAMES-eng": "2265", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1216", + "NUMBER_OF_BYTES-eng": "1216", + "NUMBER_OF_FRAMES": "37", + "NUMBER_OF_FRAMES-eng": "37", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "spa", + "title": "Castilian [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:42:19.008000000", + "DURATION-eng": "01:42:19.008000000", + "NUMBER_OF_BYTES": "61545", + "NUMBER_OF_BYTES-eng": "61545", + "NUMBER_OF_FRAMES": "1963", + "NUMBER_OF_FRAMES-eng": "1963", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "spa", + "title": "Castilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:25.848000000", + "DURATION-eng": "01:42:25.848000000", + "NUMBER_OF_BYTES": "1258", + "NUMBER_OF_BYTES-eng": "1258", + "NUMBER_OF_FRAMES": "40", + "NUMBER_OF_FRAMES-eng": "40", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "spa", + "title": "Spanish [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:42:25.848000000", + "DURATION-eng": "01:42:25.848000000", + "NUMBER_OF_BYTES": "64854", + "NUMBER_OF_BYTES-eng": "64854", + "NUMBER_OF_FRAMES": "1932", + "NUMBER_OF_FRAMES-eng": "1932", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1363", + "NUMBER_OF_BYTES-eng": "1363", + "NUMBER_OF_FRAMES": "39", + "NUMBER_OF_FRAMES-eng": "39", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "fre", + "title": "French [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "90", + "BPS-eng": "90", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "69688", + "NUMBER_OF_BYTES-eng": "69688", + "NUMBER_OF_FRAMES": "1999", + "NUMBER_OF_FRAMES-eng": "1999", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1120", + "NUMBER_OF_BYTES-eng": "1120", + "NUMBER_OF_FRAMES": "36", + "NUMBER_OF_FRAMES-eng": "36", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "ger", + "title": "German [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "60248", + "NUMBER_OF_BYTES-eng": "60248", + "NUMBER_OF_FRAMES": "1908", + "NUMBER_OF_FRAMES-eng": "1908", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "ger", + "title": "German" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "449", + "NUMBER_OF_BYTES-eng": "449", + "NUMBER_OF_FRAMES": "15", + "NUMBER_OF_FRAMES-eng": "15", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "ita", + "title": "Italian [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "64755", + "NUMBER_OF_BYTES-eng": "64755", + "NUMBER_OF_FRAMES": "1884", + "NUMBER_OF_FRAMES-eng": "1884", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:42:23.053000000", + "DURATION-eng": "01:42:23.053000000", + "NUMBER_OF_BYTES": "64695", + "NUMBER_OF_BYTES-eng": "64695", + "NUMBER_OF_FRAMES": "1861", + "NUMBER_OF_FRAMES-eng": "1861", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1209", + "NUMBER_OF_BYTES-eng": "1209", + "NUMBER_OF_FRAMES": "37", + "NUMBER_OF_FRAMES-eng": "37", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "por", + "title": "Brazilian Portuguese [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "01:42:18.424000000", + "DURATION-eng": "01:42:18.424000000", + "NUMBER_OF_BYTES": "63767", + "NUMBER_OF_BYTES-eng": "63767", + "NUMBER_OF_FRAMES": "1909", + "NUMBER_OF_FRAMES-eng": "1909", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "por", + "title": "Brazilian Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1162", + "NUMBER_OF_BYTES-eng": "1162", + "NUMBER_OF_FRAMES": "37", + "NUMBER_OF_FRAMES-eng": "37", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "pol", + "title": "Polish [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "77", + "BPS-eng": "77", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "59357", + "NUMBER_OF_BYTES-eng": "59357", + "NUMBER_OF_FRAMES": "1901", + "NUMBER_OF_FRAMES-eng": "1901", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1229", + "NUMBER_OF_BYTES-eng": "1229", + "NUMBER_OF_FRAMES": "39", + "NUMBER_OF_FRAMES-eng": "39", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "tur", + "title": "Turkish [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "63638", + "NUMBER_OF_BYTES-eng": "63638", + "NUMBER_OF_FRAMES": "2012", + "NUMBER_OF_FRAMES-eng": "2012", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "tur", + "title": "Turkish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "79", + "BPS-eng": "79", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "61227", + "NUMBER_OF_BYTES-eng": "61227", + "NUMBER_OF_FRAMES": "1621", + "NUMBER_OF_FRAMES-eng": "1621", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "81", + "BPS-eng": "81", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "62273", + "NUMBER_OF_BYTES-eng": "62273", + "NUMBER_OF_FRAMES": "1745", + "NUMBER_OF_FRAMES-eng": "1745", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "60150", + "NUMBER_OF_BYTES-eng": "60150", + "NUMBER_OF_FRAMES": "1916", + "NUMBER_OF_FRAMES-eng": "1916", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "73", + "BPS-eng": "73", + "DURATION": "01:42:17.548000000", + "DURATION-eng": "01:42:17.548000000", + "NUMBER_OF_BYTES": "56434", + "NUMBER_OF_BYTES-eng": "56434", + "NUMBER_OF_FRAMES": "1676", + "NUMBER_OF_FRAMES-eng": "1676", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "60335", + "NUMBER_OF_BYTES-eng": "60335", + "NUMBER_OF_FRAMES": "1821", + "NUMBER_OF_FRAMES-eng": "1821", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2", + "BPS-eng": "2", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1804", + "NUMBER_OF_BYTES-eng": "1804", + "NUMBER_OF_FRAMES": "40", + "NUMBER_OF_FRAMES-eng": "40", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "rus", + "title": "Russian [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "137", + "BPS-eng": "137", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "105240", + "NUMBER_OF_BYTES-eng": "105240", + "NUMBER_OF_FRAMES": "1977", + "NUMBER_OF_FRAMES-eng": "1977", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "rus", + "title": "Russian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "75", + "BPS-eng": "75", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "57924", + "NUMBER_OF_BYTES-eng": "57924", + "NUMBER_OF_FRAMES": "2017", + "NUMBER_OF_FRAMES-eng": "2017", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "hun", + "title": "Hungarian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "138", + "BPS-eng": "138", + "DURATION": "01:42:17.840000000", + "DURATION-eng": "01:42:17.840000000", + "NUMBER_OF_BYTES": "106138", + "NUMBER_OF_BYTES-eng": "106138", + "NUMBER_OF_FRAMES": "1906", + "NUMBER_OF_FRAMES-eng": "1906", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "gre", + "title": "Greek" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "145", + "BPS-eng": "145", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "111881", + "NUMBER_OF_BYTES-eng": "111881", + "NUMBER_OF_FRAMES": "1950", + "NUMBER_OF_FRAMES-eng": "1950", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "heb", + "title": "Hebrew" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "151", + "BPS-eng": "151", + "DURATION": "01:42:15.254000000", + "DURATION-eng": "01:42:15.254000000", + "NUMBER_OF_BYTES": "116458", + "NUMBER_OF_BYTES-eng": "116458", + "NUMBER_OF_FRAMES": "2012", + "NUMBER_OF_FRAMES-eng": "2012", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "ara", + "title": "Arabic" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "100", + "BPS-eng": "100", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "76808", + "NUMBER_OF_BYTES-eng": "76808", + "NUMBER_OF_FRAMES": "1871", + "NUMBER_OF_FRAMES-eng": "1871", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "rum", + "title": "Romanian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "56847", + "NUMBER_OF_BYTES-eng": "56847", + "NUMBER_OF_FRAMES": "1994", + "NUMBER_OF_FRAMES-eng": "1994", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "cze", + "title": "Czech" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3", + "BPS-eng": "3", + "DURATION": "01:39:29.380000000", + "DURATION-eng": "01:39:29.380000000", + "NUMBER_OF_BYTES": "2708", + "NUMBER_OF_BYTES-eng": "2708", + "NUMBER_OF_FRAMES": "37", + "NUMBER_OF_FRAMES-eng": "37", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "hin", + "title": "Hindi [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 35, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "61554", + "NUMBER_OF_BYTES-eng": "61554", + "NUMBER_OF_FRAMES": "2013", + "NUMBER_OF_FRAMES-eng": "2013", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "ind", + "title": "Indonesian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 36, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "117", + "BPS-eng": "117", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "90228", + "NUMBER_OF_BYTES-eng": "90228", + "NUMBER_OF_FRAMES": "2017", + "NUMBER_OF_FRAMES-eng": "2017", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "vie", + "title": "Vietnamese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 37, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "222", + "BPS-eng": "222", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "170467", + "NUMBER_OF_BYTES-eng": "170467", + "NUMBER_OF_FRAMES": "2037", + "NUMBER_OF_FRAMES-eng": "2037", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "tha", + "title": "Thai" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 38, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "119", + "BPS-eng": "119", + "DURATION": "01:42:14.378000000", + "DURATION-eng": "01:42:14.378000000", + "NUMBER_OF_BYTES": "91610", + "NUMBER_OF_BYTES-eng": "91610", + "NUMBER_OF_FRAMES": "1969", + "NUMBER_OF_FRAMES-eng": "1969", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "kor", + "title": "Korean" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 39, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "99", + "BPS-eng": "99", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "76442", + "NUMBER_OF_BYTES-eng": "76442", + "NUMBER_OF_FRAMES": "2015", + "NUMBER_OF_FRAMES-eng": "2015", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "chi", + "title": "Chinese (Simplified)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 40, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "94", + "BPS-eng": "94", + "DURATION": "01:42:16.839000000", + "DURATION-eng": "01:42:16.839000000", + "NUMBER_OF_BYTES": "72330", + "NUMBER_OF_BYTES-eng": "72330", + "NUMBER_OF_FRAMES": "2017", + "NUMBER_OF_FRAMES-eng": "2017", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "chi", + "title": "Chinese (Traditional)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 41, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "1334", + "NUMBER_OF_BYTES-eng": "1334", + "NUMBER_OF_FRAMES": "40", + "NUMBER_OF_FRAMES-eng": "40", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "jpn", + "title": "Japanese [Forced]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6212.768000", + "duration_ts": 6212768, + "index": 42, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:42:19.133000000", + "DURATION-eng": "01:42:19.133000000", + "NUMBER_OF_BYTES": "60378", + "NUMBER_OF_BYTES-eng": "60378", + "NUMBER_OF_FRAMES": "2146", + "NUMBER_OF_FRAMES-eng": "2146", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-10 07:05:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-10 07:05:03", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + } + ] + }, + "Slap Shot/Slap Shot.mp4": { + "format": { + "bit_rate": "1379950", + "duration": "7380.840122", + "filename": "Slap Shot/Slap Shot.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1273149243", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T10:38:01.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1574054509/65634574", + "bit_rate": "1263497", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "32817287/1574054509", + "codec_type": "video", + "coded_height": 460, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7380.840122", + "duration_ts": 664275611, + "has_b_frames": 1, + "height": 460, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "177008", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T10:38:01.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111098", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7380.800000", + "duration_ts": 354278400, + "index": 1, + "max_bit_rate": "136848", + "nb_frames": "345975", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T10:38:01.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Star Wars Episode II Attack Of The Clones (2002)/48c78cccd40546e082d92f25d0ddbf4b.mkv": { + "format": { + "bit_rate": "7985902", + "duration": "8547.883000", + "filename": "Star Wars Episode II Attack Of The Clones (2002)/48c78cccd40546e082d92f25d0ddbf4b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "8532819672", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-01-01T19:25:56.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 818, + "coded_width": 1920, + "display_aspect_ratio": "960:409", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 818, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8547.883000", + "duration_ts": 8547883, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8547.883000", + "duration_ts": 8547883, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "non-English" + }, + "time_base": "1/1000" + } + ] + }, + "Harry Potter And The Half-Blood Prince (2009)/Harry Potter and the Half-Blood Prince (2009) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv": { + "format": { + "bit_rate": "1481701", + "duration": "8797.352000", + "filename": "Harry Potter And The Half-Blood Prince (2009)/Harry Potter and the Half-Blood Prince (2009) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "1629381723", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101", + "title": "Harry Potter and the Half-Blood Prince (2009) - KartiKing - Movies.DigitalMaza.Org" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "680046", + "BPS-eng": "680046", + "DURATION": "02:26:36.371000000", + "DURATION-eng": "02:26:36.371000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "747742225", + "NUMBER_OF_BYTES-eng": "747742225", + "NUMBER_OF_FRAMES": "210902", + "NUMBER_OF_FRAMES-eng": "210902", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 10:02:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 10:02:03", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "02:26:36.352000000", + "DURATION-eng": "02:26:36.352000000", + "NUMBER_OF_BYTES": "140741632", + "NUMBER_OF_BYTES-eng": "140741632", + "NUMBER_OF_FRAMES": "274886", + "NUMBER_OF_FRAMES-eng": "274886", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 10:02:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 10:02:03", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 1000, + "start_time": "1.000000", + "tags": { + "BPS": "160000", + "BPS-eng": "160000", + "DURATION": "02:26:37.352000000", + "DURATION-eng": "02:26:36.352000000", + "NUMBER_OF_BYTES": "175927040", + "NUMBER_OF_BYTES-eng": "175927040", + "NUMBER_OF_FRAMES": "274886", + "NUMBER_OF_FRAMES-eng": "274886", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 10:02:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 10:02:03", + "language": "hin", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8797.352000", + "duration_ts": 8797352, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "48", + "BPS-eng": "48", + "DURATION": "02:23:24.829000000", + "DURATION-eng": "02:23:22.829000000", + "NUMBER_OF_BYTES": "52365", + "NUMBER_OF_BYTES-eng": "52365", + "NUMBER_OF_FRAMES": "1439", + "NUMBER_OF_FRAMES-eng": "1439", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 10:02:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 10:02:03", + "language": "eng", + "title": "eng subs - KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8797.352000", + "duration_ts": 8797352, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "00:00:20.000000000", + "DURATION-eng": "00:00:13.000000000", + "NUMBER_OF_BYTES": "51", + "NUMBER_OF_BYTES-eng": "51", + "NUMBER_OF_FRAMES": "2", + "NUMBER_OF_FRAMES-eng": "2", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 10:02:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 10:02:03", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + } + ] + }, + "Hot Tub Time Machine (2010)/55d4fc9c08ba4dd79aa3cc0b9b9a27ef.mkv": { + "format": { + "bit_rate": "6219364", + "duration": "6037.078000", + "filename": "Hot Tub Time Machine (2010)/55d4fc9c08ba4dd79aa3cc0b9b9a27ef.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4693348338", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-23T21:41:29.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 690, + "coded_width": 1280, + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 690, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6037.078000", + "duration_ts": 6037078, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Adventures Of Andre And Wally B (1984)/the.adventures.of.andre.and.wally.b.1984.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4188562", + "duration": "113.152000", + "filename": "The Adventures Of Andre And Wally B (1984)/the.adventures.of.andre.and.wally.b.1984.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "59243026", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-27T23:26:35.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 960, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Boondock Saints II All Saints Day (2009)/38ff5c9474d84d15970e2b98db94db0e.mkv": { + "format": { + "bit_rate": "6202467", + "duration": "7051.040000", + "filename": "The Boondock Saints II All Saints Day (2009)/38ff5c9474d84d15970e2b98db94db0e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5466731148", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-04T10:52:39Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5752529", + "DURATION-eng": "01:57:31.003000000", + "NUMBER_OF_BYTES-eng": "5070138193", + "NUMBER_OF_FRAMES-eng": "169055", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 05:54:06" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:57:31.040000000", + "NUMBER_OF_BYTES-eng": "394858240", + "NUMBER_OF_FRAMES-eng": "220345", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 05:54:06", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7051.040000", + "duration_ts": 7051040, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "61", + "DURATION-eng": "01:57:11.877000000", + "NUMBER_OF_BYTES-eng": "53873", + "NUMBER_OF_FRAMES-eng": "1543", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-05 05:54:06", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Hannibal Rising/Hannibal Rising.avi": { + "format": { + "bit_rate": "810312", + "duration": "7260.385385", + "filename": "Hannibal Rising/Hannibal Rising.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735397888", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "689004", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 242, + "coded_width": 580, + "display_aspect_ratio": "290:121", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7260.385385", + "duration_ts": 174075, + "has_b_frames": 1, + "height": 242, + "index": 0, + "level": 5, + "nb_frames": "174075", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 580 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "302516", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Breakfast Club/The Breakfast Club.avi": { + "format": { + "bit_rate": "1042516", + "duration": "5827.077077", + "filename": "The Breakfast Club/The Breakfast Club.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "759353343", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "925624", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 720, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5827.077077", + "duration_ts": 139710, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "139710", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Videostream" + }, + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "85036000", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audiostream 1" + }, + "time_base": "1/14000" + } + ] + }, + "Aliens (1986)/Aliens.Directors.Cut.1986.1080p.BRrip.x264.GAZ.YIFY.mp4": { + "format": { + "bit_rate": "2040594", + "duration": "9267.050000", + "filename": "Aliens (1986)/Aliens.Directors.Cut.1986.1080p.BRrip.x264.GAZ.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2363786037", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-06T11:45:46.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1941481", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1036, + "coded_width": 1920, + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9266.882625", + "duration_ts": 222405183, + "has_b_frames": 2, + "height": 1036, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "222183", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-03-06T11:45:46.000000Z", + "handler_name": "mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95966", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9267.050667", + "duration_ts": 444818432, + "index": 1, + "max_bit_rate": "154200", + "nb_frames": "434393", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-06T08:17:51.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Terminator 4 Salvation (2009)/Terminator_4_Salvation_2009_Directors_Cut_BDRip_FASM_X264_720p_1Mbps.mp4": { + "format": { + "bit_rate": "1016819", + "duration": "7051.200000", + "filename": "Terminator 4 Salvation (2009)/Terminator_4_Salvation_2009_Directors_Cut_BDRip_FASM_X264_720p_1Mbps.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "896224596", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2009-11-08T18:22:52.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "900146", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7051.044000", + "duration_ts": 169225056, + "has_b_frames": 1, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "169056", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-11-08T18:22:52.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114063", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/32000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7051.200000", + "duration_ts": 225638400, + "index": 1, + "max_bit_rate": "149920", + "nb_frames": "110175", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "32000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-11-08T18:23:46.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/32000" + } + ] + }, + "Star Wars Episode III Revenge Of The Sith (2005)/Star.Wars.Episode.III.Revenge.Of.The.Sith.2005.1080p.Bluray.x264.anoXmous.mp4": { + "format": { + "bit_rate": "1389893", + "duration": "8405.973333", + "filename": "Star Wars Episode III Revenge Of The Sith (2005)/Star.Wars.Episode.III.Revenge.Of.The.Sith.2005.1080p.Bluray.x264.anoXmous.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1460426253", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2012-02-15T22:29:41.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1315601", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1916, + "display_aspect_ratio": "493578:210215", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8405.855000", + "duration_ts": 201740520, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "201539", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "32766:32767", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-02-15T13:38:53.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "71457", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8405.973333", + "duration_ts": 201743360, + "index": 1, + "max_bit_rate": "92304", + "nb_frames": "197015", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-02-15T22:31:53.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "Bullworth (1998)/Bullworth.m4v": { + "format": { + "bit_rate": "1255479", + "duration": "6493.952000", + "filename": "Bullworth (1998)/Bullworth.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1019127598", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-24T02:41:28.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1690026287/70499975", + "bit_rate": "893679", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "40362926/1935161139", + "codec_type": "video", + "coded_height": 352, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "637:352", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6493.906156", + "duration_ts": 584451554, + "has_b_frames": 1, + "height": 352, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "155672", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "637:720", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-24T02:41:28.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164519", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6493.952000", + "duration_ts": 311709696, + "index": 1, + "max_bit_rate": "244248", + "nb_frames": "304404", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-24T02:41:28.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6493.952000", + "duration_ts": 311709696, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "202936", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-24T02:41:28.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Captain Ron/Captain Ron.mp4": { + "format": { + "bit_rate": "2131761", + "duration": "6004.292589", + "filename": "Captain Ron/Captain Ron.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1599964904", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-06T21:53:21.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2051557003/85564089", + "bit_rate": "1961434", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "29281145/1404139021", + "codec_type": "video", + "coded_height": 466, + "coded_width": 708, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "3776:2097", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6004.292589", + "duration_ts": 540386333, + "has_b_frames": 1, + "height": 466, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "143964", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T21:53:21.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 708 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164712", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6004.245333", + "duration_ts": 288203776, + "index": 1, + "max_bit_rate": "251120", + "nb_frames": "281449", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T21:53:21.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Planet of the Apes (2001)/Planet.of.the.Apes.2001.720p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "875111", + "duration": "7198.121667", + "filename": "Planet of the Apes (2001)/Planet.of.the.Apes.2001.720p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "787395220", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-06-22T11:19:15.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "779406", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7198.065875", + "duration_ts": 691014324, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "172581", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-06-22T11:19:15.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "91999", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7198.122667", + "duration_ts": 345509888, + "index": 1, + "max_bit_rate": "102112", + "nb_frames": "337412", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-22T11:22:17.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Winter Passing (2005)/Winter.Passing.2005.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "711823", + "duration": "5963.113333", + "filename": "Winter Passing (2005)/Winter.Passing.2005.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "530585689", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-06-22T07:04:19.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64569", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5963.114667", + "duration_ts": 286229504, + "index": 0, + "max_bit_rate": "69832", + "nb_frames": "279521", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-06-22T07:04:19.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "643111", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5963.040417", + "duration_ts": 143112970, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "142970", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-06-22T07:04:22.000000Z", + "handler_name": "Winter.Passing.2005.WEB-DL.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "G I Joe The Rise Of Cobra (2009)/90f49ed9fd5948d6aa44146f39d2f12c.mkv": { + "format": { + "bit_rate": "7540240", + "duration": "7079.542000", + "filename": "G I Joe The Rise Of Cobra (2009)/90f49ed9fd5948d6aa44146f39d2f12c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6672681171", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-22T07:17:18.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5996721", + "DURATION-eng": "01:57:59.531000000", + "NUMBER_OF_BYTES-eng": "5306747052", + "NUMBER_OF_FRAMES-eng": "169739", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-22 07:17:18", + "language": "eng", + "title": "G.I.Joe.The.Rise.of.Cobra.2009.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1508999", + "DURATION-eng": "01:57:59.542000000", + "NUMBER_OF_BYTES-eng": "1335378484", + "NUMBER_OF_FRAMES-eng": "663707", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-22 07:17:18", + "language": "eng", + "title": "G.I.Joe.The.Rise.of.Cobra.2009.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7079.542000", + "duration_ts": 7079542, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35225", + "DURATION-eng": "01:47:25.856000000", + "NUMBER_OF_BYTES-eng": "28382136", + "NUMBER_OF_FRAMES-eng": "2284", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-22 07:17:18", + "language": "eng", + "title": "G.I.Joe.The.Rise.of.Cobra.2009.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + } + ] + }, + "Pride and Prejudice (2005)/Pride.and.Prejudice[2005]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "810853", + "duration": "7255.320000", + "filename": "Pride and Prejudice (2005)/Pride.and.Prejudice[2005]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735375360", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "721148", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 226, + "coded_width": 548, + "display_aspect_ratio": "274:113", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7255.320000", + "duration_ts": 181383, + "has_b_frames": 1, + "height": 226, + "index": 0, + "level": 5, + "nb_frames": "181383", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 548 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "80000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "302305", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Bourne Ultimatum (2007)/The.Bourne.Ultimatum.2007.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "9239751", + "duration": "6914.080000", + "filename": "The Bourne Ultimatum (2007)/The.Bourne.Ultimatum.2007.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7985547892", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-11-05T13:31:05.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "@7338Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS@1536Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur", + "title": "AC3@384Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6914.080000", + "duration_ts": 6914080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6914.080000", + "duration_ts": 6914080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Moon (2009)/Moon.2009.BRRIP.H264-ZEKTORM.mp4": { + "format": { + "bit_rate": "1870625", + "duration": "5829.930000", + "filename": "Moon (2009)/Moon.2009.BRRIP.H264-ZEKTORM.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1363202118", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "composer": "ZEKTORM FILE", + "creation_time": "2009-11-19T23:04:22.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1516860", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5829.782292", + "duration_ts": 139914775, + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "139775", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2009-11-19T23:04:22.000000Z", + "handler_name": "Video", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "279434", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5829.888000", + "duration_ts": 279834624, + "index": 1, + "max_bit_rate": "463856", + "nb_frames": "273276", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-11-19T23:05:30.000000Z", + "handler_name": "English", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "69646", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5829.930667", + "duration_ts": 279836672, + "index": 2, + "max_bit_rate": "100888", + "nb_frames": "136639", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-11-19T23:05:43.000000Z", + "handler_name": "English", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "London Has Fallen (2016)/London.Has.Fallen.(2016).1080p.BluRay.DTS.x265.HEVC.mkv": { + "format": { + "bit_rate": "5212474", + "duration": "5921.958000", + "filename": "London Has Fallen (2016)/London.Has.Fallen.(2016).1080p.BluRay.DTS.x265.HEVC.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3858507053", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-08-13T15:03:55.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3701113", + "BPS-eng": "3701113", + "DURATION": "01:38:41.958000000", + "DURATION-eng": "01:38:41.958000000", + "NUMBER_OF_BYTES": "2739729765", + "NUMBER_OF_BYTES-eng": "2739729765", + "NUMBER_OF_FRAMES": "141984", + "NUMBER_OF_FRAMES-eng": "141984", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.3.1 ('Mask Machine') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.3.1 ('Mask Machine') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-13 15:03:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-13 15:03:55", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:38:41.920000000", + "DURATION-eng": "01:38:41.920000000", + "NUMBER_OF_BYTES": "1117022160", + "NUMBER_OF_BYTES-eng": "1117022160", + "NUMBER_OF_FRAMES": "555180", + "NUMBER_OF_FRAMES-eng": "555180", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.3.1 ('Mask Machine') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.3.1 ('Mask Machine') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-13 15:03:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-13 15:03:55", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5921.958000", + "duration_ts": 5921958, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "43", + "BPS-eng": "43", + "DURATION": "01:31:28.146000000", + "DURATION-eng": "01:31:28.146000000", + "NUMBER_OF_BYTES": "30010", + "NUMBER_OF_BYTES-eng": "30010", + "NUMBER_OF_FRAMES": "779", + "NUMBER_OF_FRAMES-eng": "779", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.3.1 ('Mask Machine') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.3.1 ('Mask Machine') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-13 15:03:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-13 15:03:55", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "No Country for Old Men (2007)/ck-nocountry.mkv": { + "format": { + "bit_rate": "5124068", + "duration": "7330.293000", + "filename": "No Country for Old Men (2007)/ck-nocountry.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4695115275", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-02-23T04:10:46.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Spirited Away/Spirited Away.avi": { + "format": { + "bit_rate": "1050235", + "duration": "7476.601602", + "filename": "Spirited Away/Spirited Away.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "981524480", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "921754", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7476.601602", + "duration_ts": 179259, + "has_b_frames": 1, + "height": 400, + "index": 0, + "level": 5, + "nb_frames": "179259", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115776", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.600000", + "duration_ts": 311525, + "index": 1, + "nb_frames": "311525", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "O Brother Where Art Thou (2000)/2dda5043c2644213aeb6e4903fa94443.mkv": { + "format": { + "bit_rate": "8138323", + "duration": "6429.440000", + "filename": "O Brother Where Art Thou (2000)/2dda5043c2644213aeb6e4903fa94443.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6540608156", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-07-18T15:47:30.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 546, + "coded_width": 1280, + "display_aspect_ratio": "640:273", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 546, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "O.Brother.Where.Art.Thou.2000.720p.BluRay.DD5.1.x264-DON" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6429.440000", + "duration_ts": 6429440, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Resident Evil The Final Chapter (2017)/resident.evil.the.final.chapter.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4398032", + "duration": "6422.840000", + "filename": "Resident Evil The Final Chapter (2017)/resident.evil.the.final.chapter.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3530982690", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-14T14:56:55.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:46:39.391996032", + "DURATION-eng": "01:46:39.391996032", + "NUMBER_OF_BYTES": "307170816", + "NUMBER_OF_BYTES-eng": "307170816", + "NUMBER_OF_FRAMES": "199981", + "NUMBER_OF_FRAMES-eng": "199981", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.5.0 ('Quiet Fire') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.5.0 ('Quiet Fire') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-14 14:28:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-14 14:28:12", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Captain America The Winter Soldier (2014)/Captain.America.The.Winter.Soldier.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2063709", + "duration": "8154.260000", + "filename": "Captain America The Winter Soldier (2014)/Captain.America.The.Winter.Soldier.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2103503304", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-08-01T09:21:51.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1965903", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8154.146000", + "duration_ts": 195699504, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "195504", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-08-01T09:21:51.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93797", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8154.261333", + "duration_ts": 391404544, + "index": 1, + "max_bit_rate": "105576", + "nb_frames": "382231", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-08-01T09:22:04.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Inception (2010)/Inception (2010) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi": { + "format": { + "bit_rate": "1380743", + "duration": "8886.078440", + "filename": "Inception (2010)/Inception (2010) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1533674770", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.8.3, Feb 16 201019:42:50" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1185137", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8886.078440", + "duration_ts": 213053, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "213053", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "10000000/417083", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "213266304", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "inception" + }, + "time_base": "1/24000" + } + ] + }, + "Grace Is Gone (2007)/Grace Is Gone[2007]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "1148558", + "duration": "5113.029696", + "filename": "Grace Is Gone (2007)/Grace Is Gone[2007]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734076928", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1011213", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 376, + "coded_width": 684, + "display_aspect_ratio": "171:94", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5113.029696", + "duration_ts": 122590, + "has_b_frames": 1, + "height": 376, + "index": 0, + "level": 5, + "nb_frames": "122590", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 684 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "213043", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Incredibles 2 (2018)/Incredibles.2.2018.1080p.WEB-DL.DD5.1.H264-CMRG.mkv": { + "format": { + "bit_rate": "4888415", + "duration": "7069.248000", + "filename": "Incredibles 2 (2018)/Incredibles.2.2018.1080p.WEB-DL.DD5.1.H264-CMRG.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4319677667", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-10-22T14:12:39.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "CMRG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4502587", + "BPS-eng": "4502587", + "DURATION": "01:57:49.194000000", + "DURATION-eng": "01:57:49.194000000", + "NUMBER_OF_BYTES": "3978708483", + "NUMBER_OF_BYTES-eng": "3978708483", + "NUMBER_OF_FRAMES": "169491", + "NUMBER_OF_FRAMES-eng": "169491", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-22 14:12:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-22 14:12:39", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:57:49.248000000", + "DURATION-eng": "01:57:49.248000000", + "NUMBER_OF_BYTES": "339323904", + "NUMBER_OF_BYTES-eng": "339323904", + "NUMBER_OF_FRAMES": "220914", + "NUMBER_OF_FRAMES-eng": "220914", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-22 14:12:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-22 14:12:39", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Mr And Mrs Smith (2005 )/Mr.And.Mrs.Smith.2005.Dir.Cut.wrath.mp4": { + "format": { + "bit_rate": "2295859", + "duration": "7532.983333", + "filename": "Mr And Mrs Smith (2005 )/Mr.And.Mrs.Smith.2005.Dir.Cut.wrath.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2161833557", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2009-08-18T02:15:10.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1765118", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7532.983792", + "duration_ts": 180791611, + "has_b_frames": 1, + "height": 304, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "180611", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-08-18T02:15:10.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130164", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7525.781333", + "duration_ts": 361237504, + "index": 1, + "max_bit_rate": "185120", + "nb_frames": "352771", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-08-18T02:19:56.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "395625", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7525.781333", + "duration_ts": 361237504, + "index": 2, + "max_bit_rate": "517496", + "nb_frames": "352771", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-08-18T02:20:11.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Die Hard 1/die.hard.1.-.cd1.avi": { + "format": { + "bit_rate": "1460784", + "duration": "4022.815433", + "filename": "Die Hard 1/die.hard.1.-.cd1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734558208", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "959/40", + "bit_rate": "1003424", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "40/959", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4022.815433", + "duration_ts": 96447, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "96447", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "959/40", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "40/959", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "225277044", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Eddie Murphy - Delirious/[smr]eddie_murphy's_delirious-vhs[1of1].avi": { + "format": { + "bit_rate": "459522", + "duration": "4189.950000", + "filename": "Eddie Murphy - Delirious/[smr]eddie_murphy's_delirious-vhs[1of1].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "240672256", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "20/1", + "bit_rate": "411763", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x3334504d", + "codec_tag_string": "MP43", + "codec_time_base": "1/20", + "codec_type": "video", + "coded_height": 288, + "coded_width": 352, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4189.950000", + "duration_ts": 83799, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "83799", + "pix_fmt": "yuv420p", + "r_frame_rate": "20/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "?????????????" + }, + "time_base": "1/20", + "width": 352 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "40000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/24000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "20949750", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "24000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "?????????????" + }, + "time_base": "1/5000" + } + ] + }, + "Captain Fantastic (2016)/Captain.Fantastic.2016.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "5928281", + "duration": "7169.371000", + "filename": "Captain Fantastic (2016)/Captain.Fantastic.2016.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5312756344", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:59:29.371000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:59:29.365000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Roger & Me/Roger & Me_2xaudio-xvid-belos.avi": { + "format": { + "bit_rate": "1576158", + "duration": "5438.057625", + "filename": "Roger & Me/Roger & Me_2xaudio-xvid-belos.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1071405056", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1306240", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 432, + "coded_width": 592, + "display_aspect_ratio": "37:27", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5438.057625", + "duration_ts": 130383, + "has_b_frames": 0, + "height": 432, + "index": 0, + "level": 3, + "nb_frames": "130383", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "226586", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "nb_frames": "226586", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Back To The Future Part Ii (1989)/1fabb4857f9b446995bbbb9521b5f83a.mkv": { + "format": { + "bit_rate": "11597016", + "duration": "6479.307000", + "filename": "Back To The Future Part Ii (1989)/1fabb4857f9b446995bbbb9521b5f83a.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "9392578732", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf54.63.104", + "creation_time": "2013-11-12T16:43:44.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6479.307000", + "duration_ts": 6479307, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "Forced French subtitles" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6479.307000", + "duration_ts": 6479307, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6479.307000", + "duration_ts": 6479307, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 84, + "start_time": "0.084000", + "tags": { + "language": "fre", + "title": "French subtitles (commentary 1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6479.307000", + "duration_ts": 6479307, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles (commentary 2)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 84, + "start_time": "0.084000", + "tags": { + "language": "eng", + "title": "English subtitles (commentary 1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6479.307000", + "duration_ts": 6479307, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English subtitles (commentary 2)" + }, + "time_base": "1/1000" + } + ] + }, + "Ice Age 2/Ice Age 2.avi": { + "format": { + "bit_rate": "1125998", + "duration": "5212.840000", + "filename": "Ice Age 2/Ice Age 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733706240", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "924293", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 274, + "coded_width": 520, + "display_aspect_ratio": "260:137", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5212.840000", + "duration_ts": 130321, + "has_b_frames": 1, + "height": 274, + "index": 0, + "level": 5, + "nb_frames": "130321", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 520 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "125108160", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "The Lorax (2012)/DR_SEUSS_THE_LORAX.m4v": { + "format": { + "bit_rate": "1146142", + "duration": "5179.249033", + "filename": "The Lorax (2012)/DR_SEUSS_THE_LORAX.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "742019603", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2013-02-04T20:14:50.000000Z", + "encoder": "HandBrake 0.9.8 2012071800", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "979209569/40841133", + "bit_rate": "974920", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "40841133/1958419138", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5179.249033", + "duration_ts": 466132413, + "has_b_frames": 2, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "124178", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-04T20:14:50.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165175", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5179.221333", + "duration_ts": 248602624, + "index": 1, + "max_bit_rate": "276808", + "nb_frames": "242776", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-04T20:14:50.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5179.249033", + "duration_ts": 466132413, + "index": 2, + "nb_frames": "20", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-04T20:14:50.000000Z", + "language": "und" + }, + "time_base": "1/90000" + } + ] + }, + "Donnie Darko (2001)/Donnie Darko 2001 BRRip 720p x264 RmD (HDScene Release).mkv": { + "format": { + "bit_rate": "1900148", + "duration": "6792.213000", + "filename": "Donnie Darko (2001)/Donnie Darko 2001 BRRip 720p x264 RmD (HDScene Release).mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1613276590", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-01-30T02:35:26.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Eagle Huntress (2016)/the.eagle.huntress.2016.limited.1080p.bluray.x264-usury.mkv": { + "format": { + "bit_rate": "10740226", + "duration": "5243.243000", + "filename": "The Eagle Huntress (2016)/the.eagle.huntress.2016.limited.1080p.bluray.x264-usury.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7039201910", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-04-28T12:46:32.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9228529", + "BPS-eng": "9228529", + "DURATION": "01:27:23.238000000", + "DURATION-eng": "01:27:23.238000000", + "NUMBER_OF_BYTES": "6048422121", + "NUMBER_OF_BYTES-eng": "6048422121", + "NUMBER_OF_FRAMES": "125712", + "NUMBER_OF_FRAMES-eng": "125712", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-28 12:46:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-28 12:46:32", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:27:23.243000000", + "DURATION-eng": "01:27:23.243000000", + "NUMBER_OF_BYTES": "989006648", + "NUMBER_OF_BYTES-eng": "989006648", + "NUMBER_OF_FRAMES": "491554", + "NUMBER_OF_FRAMES-eng": "491554", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-28 12:46:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-28 12:46:32", + "language": "kaz" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5243.243000", + "duration_ts": 5243243, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "01:24:36.363000000", + "DURATION-eng": "01:24:36.363000000", + "NUMBER_OF_BYTES": "21894", + "NUMBER_OF_BYTES-eng": "21894", + "NUMBER_OF_FRAMES": "701", + "NUMBER_OF_FRAMES-eng": "701", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-28 12:46:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-28 12:46:32", + "language": "eng", + "title": "forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5243.243000", + "duration_ts": 5243243, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38", + "BPS-eng": "38", + "DURATION": "01:27:00.256000000", + "DURATION-eng": "01:27:00.256000000", + "NUMBER_OF_BYTES": "25437", + "NUMBER_OF_BYTES-eng": "25437", + "NUMBER_OF_FRAMES": "761", + "NUMBER_OF_FRAMES-eng": "761", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-28 12:46:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-28 12:46:32", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5243.243000", + "duration_ts": 5243243, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54", + "BPS-eng": "54", + "DURATION": "01:27:05.512000000", + "DURATION-eng": "01:27:05.512000000", + "NUMBER_OF_BYTES": "35535", + "NUMBER_OF_BYTES-eng": "35535", + "NUMBER_OF_FRAMES": "1116", + "NUMBER_OF_FRAMES-eng": "1116", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-28 12:46:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-28 12:46:32", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Better Off Dead/Better Off Dead.avi": { + "format": { + "bit_rate": "1006829", + "duration": "5835.496333", + "filename": "Better Off Dead/Better Off Dead.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734418944", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "871774", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 544, + "display_aspect_ratio": "34:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5835.496333", + "duration_ts": 139912, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "139912", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 544 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "243146", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "But I'm A Cheerleader/But I'm A Cheerleader.mp4": { + "format": { + "bit_rate": "980298", + "duration": "5129.162544", + "filename": "But I'm A Cheerleader/But I'm A Cheerleader.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "628513970", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-06T21:37:08.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1414375593/58991692", + "bit_rate": "811378", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "29495846/1414375593", + "codec_type": "video", + "coded_height": 460, + "coded_width": 716, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "5728:3105", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5129.162544", + "duration_ts": 461624629, + "has_b_frames": 1, + "height": 460, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "122976", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T21:37:08.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 716 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "163881", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5129.109333", + "duration_ts": 246197248, + "index": 1, + "max_bit_rate": "253544", + "nb_frames": "240427", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T21:37:08.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Avengers Infinity War (2018)/10bffce04e0d48e9b8ed1cec0c824556.mkv": { + "format": { + "bit_rate": "4904575", + "duration": "8981.595000", + "filename": "Avengers Infinity War (2018)/10bffce04e0d48e9b8ed1cec0c824556.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "5506363302", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-07-30T14:43:43.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Avengers.Infinity.War.2018.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS-eng": "4519622", + "DURATION-eng": "02:29:41.552000000", + "NUMBER_OF_BYTES-eng": "5074152990", + "NUMBER_OF_FRAMES-eng": "215343", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-30 14:43:43", + "language": "eng", + "title": "Avengers.Infinity.War.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "02:29:19.680000000", + "NUMBER_OF_BYTES-eng": "430064640", + "NUMBER_OF_FRAMES-eng": "279990", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-30 14:43:43", + "language": "eng", + "title": "Avengers.Infinity.War.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8981.595000", + "duration_ts": 808343550, + "has_b_frames": 0, + "height": 176, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8981.595000", + "duration_ts": 808343550, + "has_b_frames": 0, + "height": 120, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8981.595000", + "duration_ts": 808343550, + "has_b_frames": 0, + "height": 882, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8981.595000", + "duration_ts": 808343550, + "has_b_frames": 0, + "height": 600, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Moontrap (1989)/Moontrap (1989-Walter Koenig, Bruce Campbell) Divx Eng.avi": { + "format": { + "bit_rate": "1154634", + "duration": "4969.130833", + "filename": "Moontrap (1989)/Moontrap (1989-Walter Koenig, Bruce Campbell) Divx Eng.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "717191168", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bit_rate": "1086934", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/30000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "display_aspect_ratio": "3:2", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4969.130833", + "duration_ts": 148925, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": -99, + "nb_frames": "148925", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/30000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "56000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/24000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "34784232", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "24000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/7000" + } + ] + }, + "Anchorman - The legend of Ron Burgundy/ANCHORMAN The legend of Ron Burgundy[2004]-Addiction10.avi": { + "format": { + "bit_rate": "1084355", + "duration": "5415.360000", + "filename": "Anchorman - The legend of Ron Burgundy/ANCHORMAN The legend of Ron Burgundy[2004]-Addiction10.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734021632", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "949067", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5415.360000", + "duration_ts": 135384, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "135384", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "225602", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Alien Vs Predator Requiem (2007)/0d3405edeee84507bc3f7a6c2cf02a95.mkv": { + "format": { + "bit_rate": "3456513", + "duration": "6065.824000", + "filename": "Alien Vs Predator Requiem (2007)/0d3405edeee84507bc3f7a6c2cf02a95.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "2620824980", + "start_time": "0.005000", + "tags": { + "creation_time": "2019-04-21T19:40:21.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "2558171", + "BPS-eng": "2558171", + "DURATION": "01:41:05.761000000", + "DURATION-eng": "01:41:05.761000000", + "NUMBER_OF_BYTES": "1939657252", + "NUMBER_OF_BYTES-eng": "1939657252", + "NUMBER_OF_FRAMES": "145414", + "NUMBER_OF_FRAMES-eng": "145414", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-21 19:40:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-21 19:40:21", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:41:05.728000000", + "DURATION-eng": "01:41:05.728000000", + "NUMBER_OF_BYTES": "339680768", + "NUMBER_OF_BYTES-eng": "339680768", + "NUMBER_OF_FRAMES": "189554", + "NUMBER_OF_FRAMES-eng": "189554", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-21 19:40:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-21 19:40:21", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "01:41:05.824000000", + "DURATION-eng": "01:41:05.824000000", + "NUMBER_OF_BYTES": "169843072", + "NUMBER_OF_BYTES-eng": "169843072", + "NUMBER_OF_FRAMES": "189557", + "NUMBER_OF_FRAMES-eng": "189557", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-21 19:40:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-21 19:40:21", + "language": "eng", + "title": "Commentary #1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "01:41:05.824000000", + "DURATION-eng": "01:41:05.824000000", + "NUMBER_OF_BYTES": "169843072", + "NUMBER_OF_BYTES-eng": "169843072", + "NUMBER_OF_FRAMES": "189557", + "NUMBER_OF_FRAMES-eng": "189557", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-21 19:40:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-21 19:40:21", + "language": "eng", + "title": "Commentary #2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6065.824000", + "duration_ts": 6065824, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "41", + "BPS-eng": "41", + "DURATION": "01:40:57.683000000", + "DURATION-eng": "01:40:57.683000000", + "NUMBER_OF_BYTES": "31572", + "NUMBER_OF_BYTES-eng": "31572", + "NUMBER_OF_FRAMES": "1465", + "NUMBER_OF_FRAMES-eng": "1465", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-21 19:40:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-21 19:40:21", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Hobbit Battle Of The Five Armies (2014)/The.Hobbit.Battle.Of.The.Five.Armies.2014.1080p.WEBRip.x264-tomcat12[ETRG].mp4": { + "format": { + "bit_rate": "3197050", + "duration": "8665.898333", + "filename": "The Hobbit Battle Of The Five Armies (2014)/The.Hobbit.Battle.Of.The.Five.Armies.2014.1080p.WEBRip.x264-tomcat12[ETRG].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3463163869", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-03-03T08:28:05.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "3000174", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8665.865542", + "duration_ts": 207980773, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "207773", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-03-03T08:28:05.000000Z", + "handler_name": "ETRG", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "193120", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8665.898667", + "duration_ts": 415963136, + "index": 1, + "max_bit_rate": "266560", + "nb_frames": "406214", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-03-03T08:29:21.000000Z", + "handler_name": "ETRG", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Monsters Vs Aliens (2009)/Monsters.Vs.Aliens.2009.BluRay.720p.x264-FxM.mkv": { + "format": { + "bit_rate": "2065714", + "duration": "5661.760000", + "filename": "Monsters Vs Aliens (2009)/Monsters.Vs.Aliens.2009.BluRay.720p.x264-FxM.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1461947660", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-14T14:08:22.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Battlestar Galactica The Plan (2009)/92fbc175f3cc4e08b3be1f0f447a718e.mkv": { + "format": { + "bit_rate": "10214540", + "duration": "6682.667000", + "filename": "Battlestar Galactica The Plan (2009)/92fbc175f3cc4e08b3be1f0f447a718e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8532546503", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-10-20T07:12:16.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6682.667000", + "duration_ts": 6682667, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Terminator 3 (2003)/Terminator.3-Rise.Of.The.Machines[2003]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "937165", + "duration": "6279.960000", + "filename": "Terminator 3 (2003)/Terminator.3-Rise.Of.The.Machines[2003]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735670272", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "815461", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 672, + "display_aspect_ratio": "42:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6279.960000", + "duration_ts": 156999, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "156999", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "261665", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Darjeeling Limited (2007)/The.Darjeeling.Limited[2007].Dvdrip.Xvid.AC3[5.1]-RoCK&BlueLadyRG.avi": { + "format": { + "bit_rate": "2294758", + "duration": "5479.056917", + "filename": "The Darjeeling Limited (2007)/The.Darjeeling.Limited[2007].Dvdrip.Xvid.AC3[5.1]-RoCK&BlueLadyRG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1571639296", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1839645", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5479.056917", + "duration_ts": 131366, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "131366", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "306826240", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Reservoir Dogs (1992)/Reservoir.Dogs.1992.iNTERNAL.720p.BluRay.x264-MOOVEE.mkv": { + "format": { + "bit_rate": "4214775", + "duration": "5975.680000", + "filename": "Reservoir Dogs (1992)/Reservoir.Dogs.1992.iNTERNAL.720p.BluRay.x264-MOOVEE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3148268488", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-19T11:42:22.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 548, + "coded_width": 1280, + "display_aspect_ratio": "320:137", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 548, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2677920", + "BPS-eng": "2677920", + "DURATION": "01:39:35.678000000", + "DURATION-eng": "01:39:35.678000000", + "NUMBER_OF_BYTES": "2000299024", + "NUMBER_OF_BYTES-eng": "2000299024", + "NUMBER_OF_FRAMES": "143273", + "NUMBER_OF_FRAMES-eng": "143273", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-19 11:42:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-19 11:42:22", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509002", + "BPS-eng": "1509002", + "DURATION": "01:39:35.680000000", + "DURATION-eng": "01:39:35.680000000", + "NUMBER_OF_BYTES": "1127164680", + "NUMBER_OF_BYTES-eng": "1127164680", + "NUMBER_OF_FRAMES": "560220", + "NUMBER_OF_FRAMES-eng": "560220", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-19 11:42:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-19 11:42:22", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5975.680000", + "duration_ts": 5975680, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25671", + "BPS-eng": "25671", + "DURATION": "01:38:52.927000000", + "DURATION-eng": "01:38:52.927000000", + "NUMBER_OF_BYTES": "19038033", + "NUMBER_OF_BYTES-eng": "19038033", + "NUMBER_OF_FRAMES": "3260", + "NUMBER_OF_FRAMES-eng": "3260", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-19 11:42:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-19 11:42:22", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Mission Impossible 2 (2000)/Mission.Impossible.2.2000.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1043884", + "duration": "7415.401667", + "filename": "Mission Impossible 2 (2000)/Mission.Impossible.2.2000.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "967602423", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-07-27T19:08:00.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64469", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7415.402667", + "duration_ts": 355939328, + "index": 0, + "max_bit_rate": "117856", + "nb_frames": "347597", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-27T19:08:00.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "975286", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7415.324583", + "duration_ts": 177967790, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "177790", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-07-27T19:08:02.000000Z", + "handler_name": "Mission.Impossible.2.2000.BluRay.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "The Mummy Returns/The Mummy Returns.m4v": { + "format": { + "bit_rate": "1825179", + "duration": "7776.480000", + "filename": "The Mummy Returns/The Mummy Returns.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1774183572", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T19:27:47.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1677996000/69987763", + "bit_rate": "1238575", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "39420823/1890272827", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "431:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7776.418111", + "duration_ts": 699877630, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "186444", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60/1", + "refs": 1, + "sample_aspect_ratio": "431:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T19:27:47.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "133418", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7776.469333", + "duration_ts": 373270528, + "index": 1, + "max_bit_rate": "201408", + "nb_frames": "364522", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T19:27:47.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7776.480000", + "duration_ts": 373271040, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "243015", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T19:27:47.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Mother! (2017)/Mother! (2017) 1080p BluRay x264.mkv": { + "format": { + "bit_rate": "2160410", + "duration": "7271.829000", + "filename": "Mother! (2017)/Mother! (2017) 1080p BluRay x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1963767217", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-09-19T19:22:46.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS": "2048898", + "BPS-eng": "2048898", + "DURATION": "02:01:11.734000000", + "DURATION-eng": "02:01:11.734000000", + "NUMBER_OF_BYTES": "1862380392", + "NUMBER_OF_BYTES-eng": "1862380392", + "NUMBER_OF_FRAMES": "174347", + "NUMBER_OF_FRAMES-eng": "174347", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-09-19 19:22:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-19 19:22:46", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "109228", + "BPS-eng": "109228", + "DURATION": "02:01:11.829000000", + "DURATION-eng": "02:01:11.829000000", + "NUMBER_OF_BYTES": "99286137", + "NUMBER_OF_BYTES-eng": "99286137", + "NUMBER_OF_FRAMES": "340867", + "NUMBER_OF_FRAMES-eng": "340867", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-09-19 19:22:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-19 19:22:46", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7271.829000", + "duration_ts": 7271829, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "37", + "BPS-eng": "37", + "DURATION": "01:54:28.148000000", + "DURATION-eng": "01:54:28.148000000", + "NUMBER_OF_BYTES": "32315", + "NUMBER_OF_BYTES-eng": "32315", + "NUMBER_OF_FRAMES": "947", + "NUMBER_OF_FRAMES-eng": "947", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-09-19 19:22:46", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-19 19:22:46", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Helvetica/Helvetica.mp4": { + "format": { + "bit_rate": "1129791", + "duration": "4904.065828", + "filename": "Helvetica/Helvetica.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "692571465", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isom", + "creation_time": "2007-11-29T00:53:11.000000Z", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1756945033/73279249", + "bit_rate": "999937", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "44731697/2144976482", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4904.065828", + "duration_ts": 216269303, + "has_b_frames": 0, + "height": 400, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "nb_frames": "117580", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2007-11-29T00:53:11.000000Z", + "encoder": "AVC Coding", + "language": "eng" + }, + "time_base": "1/44100", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126566", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4903.961542", + "duration_ts": 216264704, + "index": 1, + "max_bit_rate": "171720", + "nb_frames": "211196", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2007-11-29T00:53:11.000000Z", + "language": "und" + }, + "time_base": "1/44100" + } + ] + }, + "Mad Max Fury Road (2015)/Mad.Max.Fury.Road.(2015).1080p.BluRay.DTS.X265.HEVC.mkv": { + "format": { + "bit_rate": "4755028", + "duration": "7223.371000", + "filename": "Mad Max Fury Road (2015)/Mad.Max.Fury.Road.(2015).1080p.BluRay.DTS.X265.HEVC.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4293416913", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-10-11T05:04:39Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "3242934", + "BPS-eng": "3242934", + "DURATION": "02:00:23.341000000", + "DURATION-eng": "02:00:23.341000000", + "NUMBER_OF_BYTES": "2928102361", + "NUMBER_OF_BYTES-eng": "2928102361", + "NUMBER_OF_FRAMES": "173187", + "NUMBER_OF_FRAMES-eng": "173187", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 19:25:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 19:25:04", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "1509749", + "BPS-eng": "1509749", + "DURATION": "02:00:23.371000000", + "DURATION-eng": "02:00:23.371000000", + "NUMBER_OF_BYTES": "1363185483", + "NUMBER_OF_BYTES-eng": "1363185483", + "NUMBER_OF_FRAMES": "677191", + "NUMBER_OF_FRAMES-eng": "677191", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 19:25:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 19:25:04", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7223.371000", + "duration_ts": 7223371, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "19", + "BPS-eng": "19", + "DURATION": "01:57:13.854000000", + "DURATION-eng": "01:57:13.854000000", + "NUMBER_OF_BYTES": "17384", + "NUMBER_OF_BYTES-eng": "17384", + "NUMBER_OF_FRAMES": "867", + "NUMBER_OF_FRAMES-eng": "867", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 19:25:04", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 19:25:04", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "The Girl With The Dragon Tattoo (2011)/f28b8f720da6437782f2626df9886687.mkv": { + "format": { + "bit_rate": "9891365", + "duration": "9488.411000", + "filename": "The Girl With The Dragon Tattoo (2011)/f28b8f720da6437782f2626df9886687.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "11731667404", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9488.411000", + "duration_ts": 9488411, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9488.411000", + "duration_ts": 9488411, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Cop Out (2010)/Dvoinoi.KOPets.2010.DUAL.BDRip.XviD.AC3.-HQ-ViDEO.avi": { + "format": { + "bit_rate": "2906201", + "duration": "6450.496019", + "filename": "Cop Out (2010)/Dvoinoi.KOPets.2010.DUAL.BDRip.XviD.AC3.-HQ-ViDEO.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2343305216", + "start_time": "0.000000", + "tags": { + "artist": "MECHANICAL ENGINEER (Blu-Ray.Remux)", + "comment": "24.01.2011", + "copyright": "HQ-ViDEO (www.hq-video.org)", + "encoder": "VirtualDubMod 1.5.10.3 | www.virtualdub-fr.org || (build 2550/release)", + "title": "Cop Out (2010)" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "2120571", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "104271/2500000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6450.496019", + "duration_ts": 154657, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "154657", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "104271/2500000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "309620736", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "309622272", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Romeo Must Die/Romeo Must Die KLAXXON.avi": { + "format": { + "bit_rate": "1413021", + "duration": "6315.480000", + "filename": "Romeo Must Die/Romeo Must Die KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1115488256", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1019361", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 656, + "display_aspect_ratio": "41:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6315.480000", + "duration_ts": 157887, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "157887", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "303143040", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Taken (2008)/Taken[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1051031", + "duration": "5604.062396", + "filename": "Taken (2008)/Taken[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736256000", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 284, + "coded_width": 696, + "display_aspect_ratio": "174:71", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5604.062396", + "duration_ts": 134363, + "has_b_frames": 1, + "height": 284, + "index": 0, + "level": 5, + "nb_frames": "134363", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 696 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "233503", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Lu Over The Wall (2017)/b91b4adde7aa4608876b78ea852f0541.mkv": { + "format": { + "bit_rate": "4747388", + "duration": "6742.699000", + "filename": "Lu Over The Wall (2017)/b91b4adde7aa4608876b78ea852f0541.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4001276638", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2019-04-07T12:57:25.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "DURATION": "01:52:22.699000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:52:21.728000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:52:21.728000000", + "language": "jpn", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6742.699000", + "duration_ts": 6742699, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:50:47.896000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Clockwork Orange/Clockwork Orange.mkv": { + "format": { + "bit_rate": "1433305", + "duration": "8197.635000", + "filename": "Clockwork Orange/Clockwork Orange.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1468714062", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 412, + "coded_width": 714, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "38199:24823", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 412, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "214:241", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 714 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "X Men The Last Stand (2006)/X.Men.The.Last.Stand.2006.1080p.BluRay.x264.DTS-ES.PRoDJi.mkv": { + "format": { + "bit_rate": "11349705", + "duration": "6245.249000", + "filename": "X Men The Last Stand (2006)/X.Men.The.Last.Stand.2006.1080p.BluRay.x264.DTS-ES.PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8860217069", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-16T16:12:19.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9389814", + "BPS-eng": "9389814", + "DURATION": "01:44:05.249000000", + "DURATION-eng": "01:44:05.249000000", + "NUMBER_OF_BYTES": "7330215865", + "NUMBER_OF_BYTES-eng": "7330215865", + "NUMBER_OF_FRAMES": "149736", + "NUMBER_OF_FRAMES-eng": "149736", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:12:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:12:19", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509010", + "BPS-eng": "1509010", + "DURATION": "01:44:05.195000000", + "DURATION-eng": "01:44:05.195000000", + "NUMBER_OF_BYTES": "1178007892", + "NUMBER_OF_BYTES-eng": "1178007892", + "NUMBER_OF_FRAMES": "585491", + "NUMBER_OF_FRAMES-eng": "585491", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:12:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:12:19", + "language": "eng", + "title": "DTS-ES@1536Kpbs 6.1 chs" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.249000", + "duration_ts": 6245249, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "35", + "BPS-eng": "35", + "DURATION": "01:42:44.824000000", + "DURATION-eng": "01:42:44.824000000", + "NUMBER_OF_BYTES": "27676", + "NUMBER_OF_BYTES-eng": "27676", + "NUMBER_OF_FRAMES": "748", + "NUMBER_OF_FRAMES-eng": "748", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:12:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:12:19", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.249000", + "duration_ts": 6245249, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "33", + "BPS-eng": "33", + "DURATION": "01:42:42.155000000", + "DURATION-eng": "01:42:42.155000000", + "NUMBER_OF_BYTES": "25803", + "NUMBER_OF_BYTES-eng": "25803", + "NUMBER_OF_FRAMES": "681", + "NUMBER_OF_FRAMES-eng": "681", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:12:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:12:19", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 4, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:44:05.248000000", + "DURATION-eng": "01:44:05.248000000", + "NUMBER_OF_BYTES": "349733888", + "NUMBER_OF_BYTES-eng": "349733888", + "NUMBER_OF_FRAMES": "195164", + "NUMBER_OF_FRAMES-eng": "195164", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:12:19", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:12:19", + "language": "tur", + "title": "AC3@448Kpbs 6chs" + }, + "time_base": "1/1000" + } + ] + }, + "Ray/Ray.mp4": { + "format": { + "bit_rate": "1320881", + "duration": "9146.637500", + "filename": "Ray/Ray.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1510202490", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T09:33:50.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "17547520/731731", + "bit_rate": "1154157", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "731731/35095040", + "codec_type": "video", + "coded_height": 460, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9146.637500", + "duration_ts": 823197375, + "has_b_frames": 1, + "height": 460, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "219344", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T09:33:50.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "161350", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9146.560000", + "duration_ts": 439034880, + "index": 1, + "max_bit_rate": "264016", + "nb_frames": "428745", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T09:33:50.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Your Highness (2011)/Your.Highness.2011.UNRATED.720p.BRRip.x264.AAC-ViSiON.mp4": { + "format": { + "bit_rate": "2170481", + "duration": "6328.383333", + "filename": "Your Highness (2011)/Your.Highness.2011.UNRATED.720p.BRRip.x264.AAC-ViSiON.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1716954649", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2011-07-26T06:30:19.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1849551", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "417083/20000000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6328.083333", + "duration_ts": 63280833333, + "has_b_frames": 1, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "nb_frames": "151730", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "10000000/417083", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-07-26T03:49:14.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/10000000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "317134", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6328.384000", + "duration_ts": 303762432, + "index": 1, + "max_bit_rate": "447816", + "nb_frames": "296643", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-07-26T06:31:51.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (build 1)", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Logans Run (1976)/Logans.Run.1976.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1207858", + "duration": "7111.593333", + "filename": "Logans Run (1976)/Logans.Run.1976.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1073724604", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2011-07-08T22:26:14.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "56445", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7111.594667", + "duration_ts": 341356544, + "index": 0, + "max_bit_rate": "96648", + "nb_frames": "333356", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-07-08T22:26:14.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1147489", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1216, + "display_aspect_ratio": "38:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7111.521083", + "duration_ts": 170676506, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "170506", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-07-08T22:26:18.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1216 + } + ] + }, + "Monkey Kingdom (2015)/Monkey.Kingdom.2015.1080p.BluRay.DTS.x265.10bit.HEVC.mkv": { + "format": { + "bit_rate": "4178668", + "duration": "4852.928000", + "filename": "Monkey Kingdom (2015)/Monkey.Kingdom.2015.1080p.BluRay.DTS.x265.10bit.HEVC.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2534847046", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-03-18T15:41:21Z", + "ENCODER": "Lavf57.7.2", + "title": "Disneynature: Monkey Kingdom" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4852.928000", + "duration_ts": 4852928, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Slacker Uprising/Slacker-Uprising.mov": { + "format": { + "bit_rate": "579290", + "duration": "5997.531667", + "filename": "Slacker Uprising/Slacker-Uprising.mov", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "434288885", + "start_time": "-0.021000", + "tags": { + "com.apple.quicktime.player.movie.audio.balance": "0.000000", + "com.apple.quicktime.player.movie.audio.bass": "0.000000", + "com.apple.quicktime.player.movie.audio.gain": "1.000000", + "com.apple.quicktime.player.movie.audio.mute": "", + "com.apple.quicktime.player.movie.audio.pitchshift": "0.000000", + "com.apple.quicktime.player.movie.audio.treble": "0.000000", + "com.apple.quicktime.player.movie.visual.brightness": "0.000000", + "com.apple.quicktime.player.movie.visual.color": "1.000000", + "com.apple.quicktime.player.movie.visual.contrast": "1.000000", + "com.apple.quicktime.player.movie.visual.tint": "0.000000", + "com.apple.quicktime.player.version": "7.5.5 (7.5.5)", + "com.apple.quicktime.version": "7.5.5 (990.7) 0x7558000 (Mac OS X, 10.5.5, 9F33)", + "compatible_brands": "qt ", + "creation_time": "2008-09-18T22:55:23.000000Z", + "major_brand": "qt ", + "minor_version": "537199360" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bit_rate": "517826", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20000:11011", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5997.531667", + "duration_ts": 179925950, + "has_b_frames": 0, + "height": 352, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "179841", + "pix_fmt": "yuv420p", + "profile": "Baseline", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1000:1001", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2008-09-18T22:55:23.000000Z", + "handler_name": "Apple Alias Data Handler" + }, + "time_base": "1/30000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "57513", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5997.418333", + "duration_ts": 287876080, + "index": 1, + "max_bit_rate": "67664", + "nb_frames": "281130", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": -1008, + "start_time": "-0.021000", + "tags": { + "creation_time": "2008-09-18T22:55:23.000000Z", + "handler_name": "Apple Alias Data Handler" + }, + "time_base": "1/48000" + } + ] + }, + "Contact (1997)/Contact.mkv": { + "format": { + "bit_rate": "2190250", + "duration": "8983.860000", + "filename": "Contact (1997)/Contact.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2459613512", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 360, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "372:157", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 360, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "186:157", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Reign of Fire/Reign of Fire.avi": { + "format": { + "bit_rate": "1009068", + "duration": "6116.825158", + "filename": "Reign of Fire/Reign of Fire.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "771536984", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-0.6.14" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "880388", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 720, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6116.825158", + "duration_ts": 146657, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "146657", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.688000", + "duration_ts": 254862, + "index": 1, + "nb_frames": "254862", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Time Machine (2002)/The Time Machine 2002 DivX ENG.avi": { + "format": { + "bit_rate": "1065609", + "duration": "5513.328000", + "filename": "The Time Machine (2002)/The Time Machine 2002 DivX ENG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734382080", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "935208", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5513.320000", + "duration_ts": 137833, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "137833", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "117528", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5513.328000", + "duration_ts": 229722, + "index": 1, + "nb_frames": "229722", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Fletch Lives (1989)/Fletch.Lives.1989.720p.BluRay.H264.AAC-RARBG.mp4": { + "format": { + "bit_rate": "1731537", + "duration": "5701.546000", + "filename": "Fletch Lives (1989)/Fletch.Lives.1989.720p.BluRay.H264.AAC-RARBG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1234055106", + "start_time": "0.000000", + "tags": { + "comment": "Fletch.Lives.1989.720p.BluRay.H264.AAC-RARBG", + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-07-07T19:14:48.000000Z", + "encoder": "Lavf56.40.101", + "major_brand": "isom", + "minor_version": "512", + "title": "Fletch.Lives.1989.720p.BluRay.H264.AAC-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1500510", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 694, + "coded_width": 1280, + "display_aspect_ratio": "640:347", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5701.493994", + "duration_ts": 68349510, + "has_b_frames": 2, + "height": 694, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "136699", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-07-07T19:14:48.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/11988", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "223998", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5701.546000", + "duration_ts": 273674208, + "index": 1, + "max_bit_rate": "224000", + "nb_frames": "267258", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-07-07T19:14:48.000000Z", + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Pirates Of The Caribbean Dead Men Tell No Tales (2017)/pirates.of.the.caribbean.dead.men.tell.no.tales.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4404297", + "duration": "7746.496000", + "filename": "Pirates Of The Caribbean Dead Men Tell No Tales (2017)/pirates.of.the.caribbean.dead.men.tell.no.tales.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4264734143", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-09-05T13:20:19.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Upgrade (2018)/Upgrade.2018.720p.BluRay.x264-x0r.mkv": { + "format": { + "bit_rate": "3011227", + "duration": "5994.530000", + "filename": "Upgrade (2018)/Upgrade.2018.720p.BluRay.x264-x0r.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2256361703", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:39:54.530000000" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:39:54.528000000" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5994.530000", + "duration_ts": 5994530, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:33:30.855000000", + "ENCODER": "Lavc57.106.101 ssa" + }, + "time_base": "1/1000" + } + ] + }, + "XXx Return Of Xander Cage (2017)/xxx.return.of.xander.cage.2017.1080p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4947449", + "duration": "6428.670000", + "filename": "XXx Return Of Xander Cage (2017)/xxx.return.of.xander.cage.2017.1080p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3975689640", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-02T09:16:40.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Hobbit The Desolation Of Smaug (2013)/The.Hobbit.The.Desolation.of.Smaug.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1825519", + "duration": "9678.036667", + "filename": "The Hobbit The Desolation Of Smaug (2013)/The.Hobbit.The.Desolation.of.Smaug.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2208430540", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-03-19T06:52:09.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1727710", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9677.959958", + "duration_ts": 232271039, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "232039", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-03-19T06:52:09.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93707", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9678.037333", + "duration_ts": 464545792, + "index": 1, + "max_bit_rate": "104160", + "nb_frames": "453658", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-03-19T06:52:36.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Ghost Town (2008)/Ghost.Town[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "958831", + "duration": "6137.387387", + "filename": "Ghost Town (2008)/Ghost.Town[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735590400", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "837526", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 616, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6137.387387", + "duration_ts": 147150, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "147150", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 616 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "255718", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Hackers Wanted (2008)/Can_You_Hack_It.mp4": { + "format": { + "bit_rate": "1123687", + "duration": "5194.147279", + "filename": "Hackers Wanted (2008)/Can_You_Hack_It.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "729574543", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isom", + "creation_time": "2006-04-07T02:02:33.000000Z", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "366132900/15270793", + "bit_rate": "992574", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x7634706d", + "codec_tag_string": "mp4v", + "codec_time_base": "15270793/366132900", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5194.147279", + "duration_ts": 229061895, + "has_b_frames": 0, + "height": 480, + "index": 0, + "level": -99, + "max_bit_rate": "8699248", + "nb_frames": "124535", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2006-04-07T02:02:33.000000Z", + "language": "eng" + }, + "time_base": "1/44100", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127826", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5194.048435", + "duration_ts": 229057536, + "index": 1, + "max_bit_rate": "223536", + "nb_frames": "223689", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2006-04-07T02:02:34.000000Z", + "language": "eng" + }, + "time_base": "1/44100" + } + ] + }, + "Mongol (2007)/Mongol 2007 720p BRRip.mp4": { + "format": { + "bit_rate": "2950418", + "duration": "7539.433333", + "filename": "Mongol (2007)/Mongol 2007 720p BRRip.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2780560650", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2011-11-29T23:54:08.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "2499053", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "104271/5000000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7539.418333", + "duration_ts": 18848545833, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "180765", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-29T16:48:21.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/2500000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "447578", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7539.434667", + "duration_ts": 361892864, + "index": 1, + "max_bit_rate": "467056", + "nb_frames": "353411", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-29T23:58:49.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "A Fish Called Wanda (1988)/A.Fish.Called.Wanda.1988.REMASTERED.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "8680503", + "duration": "6483.776000", + "filename": "A Fish Called Wanda (1988)/A.Fish.Called.Wanda.1988.REMASTERED.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "7035304672", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7909917", + "BPS-eng": "7909917", + "DURATION": "01:48:03.728000000", + "DURATION-eng": "01:48:03.728000000", + "NUMBER_OF_BYTES": "6410718801", + "NUMBER_OF_BYTES-eng": "6410718801", + "NUMBER_OF_FRAMES": "155454", + "NUMBER_OF_FRAMES-eng": "155454", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "768000", + "BPS-eng": "768000", + "DURATION": "01:48:03.776000000", + "DURATION-eng": "01:48:03.776000000", + "NUMBER_OF_BYTES": "622442496", + "NUMBER_OF_BYTES-eng": "622442496", + "NUMBER_OF_FRAMES": "607854", + "NUMBER_OF_FRAMES-eng": "607854", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6483.776000", + "duration_ts": 6483776, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "01:44:17.752000000", + "DURATION-eng": "01:44:17.752000000", + "NUMBER_OF_BYTES": "45041", + "NUMBER_OF_BYTES-eng": "45041", + "NUMBER_OF_FRAMES": "1336", + "NUMBER_OF_FRAMES-eng": "1336", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6483.776000", + "duration_ts": 6483776, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:44:17.752000000", + "DURATION-eng": "01:44:17.752000000", + "NUMBER_OF_BYTES": "46583", + "NUMBER_OF_BYTES-eng": "46583", + "NUMBER_OF_FRAMES": "1396", + "NUMBER_OF_FRAMES-eng": "1396", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Geris Game (1997)/geris.game.1997.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4646088", + "duration": "293.312000", + "filename": "Geris Game (1997)/geris.game.1997.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "170344191", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T02:07:26.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1200, + "display_aspect_ratio": "5:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1200 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Open.Season.2.2008.R5.LINE.XviD/Open.Season.2.2008.R5.LINE.XviD.avi": { + "format": { + "bit_rate": "1336909", + "duration": "4395.240000", + "filename": "Open.Season.2.2008.R5.LINE.XviD/Open.Season.2.2008.R5.LINE.XviD.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734504960", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1195867", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4395.240000", + "duration_ts": 109881, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "109881", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128104", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4394.976000", + "duration_ts": 183124, + "index": 1, + "nb_frames": "183124", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Taxi Driver (1976)/Taxi.Driver.1976.HDTVRip.H264.AAC.5.1ch.Gopo.mp4": { + "format": { + "bit_rate": "2263903", + "duration": "6827.840000", + "filename": "Taxi Driver (1976)/Taxi.Driver.1976.HDTVRip.H264.AAC.5.1ch.Gopo.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1932196230", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2010-04-17T13:17:20.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "1931747", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "104271/5000000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6827.790000", + "duration_ts": 17069475000, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "163703", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-16T18:55:04.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/2500000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "328410", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6827.840000", + "duration_ts": 327736320, + "index": 1, + "max_bit_rate": "420928", + "nb_frames": "320055", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-17T13:19:59.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Moulin Rouge/Moulin Rouge.m4v": { + "format": { + "bit_rate": "1738319", + "duration": "7668.192000", + "filename": "Moulin Rouge/Moulin Rouge.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1666220558", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T02:45:06.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "750752471/31313190", + "bit_rate": "1120379", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "15656595/750752471", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "859:368", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7668.171456", + "duration_ts": 690135431, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "183849", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "859:720", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T02:45:06.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164662", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7668.181333", + "duration_ts": 368072704, + "index": 1, + "max_bit_rate": "278072", + "nb_frames": "359446", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T02:45:06.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7668.192000", + "duration_ts": 368073216, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "239631", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T02:45:06.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Babylon 5 - In the Beginning/2 - In the Beginning.avi": { + "format": { + "bit_rate": "1023381", + "duration": "5657.657658", + "filename": "Babylon 5 - In the Beginning/2 - In the Beginning.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "723742720", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "888410", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5657.657658", + "duration_ts": 135648, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": -99, + "nb_frames": "135648", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "235736", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Kung Fu Hustle - (2004)/Kung Fu Hustle - 2004 (1080p Remux).mkv": { + "format": { + "bit_rate": "21280136", + "duration": "5965.960000", + "filename": "Kung Fu Hustle - (2004)/Kung Fu Hustle - 2004 (1080p Remux).mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "15869555202", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-06-08T09:52:56.000000Z", + "encoder": "libmakemkv v1.8.10 (1.3.0/1.4.1) win(x64-release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "chroma_location": "left", + "codec_long_name": "MPEG-2 video", + "codec_name": "mpeg2video", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 0, + "coded_width": 0, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "level": 4, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "4608000", + "bits_per_sample": 16, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "PCM signed 16-bit little-endian", + "codec_name": "pcm_s16le", + "codec_tag": "0x0001", + "codec_tag_string": "[1][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "zho", + "title": "Surround 5.1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "zho", + "title": "Surround 5.1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5965.960000", + "duration_ts": 5965960, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5965.960000", + "duration_ts": 5965960, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5965.960000", + "duration_ts": 5965960, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "zho" + }, + "time_base": "1/1000" + } + ] + }, + "Pirates of the Caribbean I - The Curse of the Black Pearl/Pirates of the Caribbean - The Curse of the Black Pearl.m4v": { + "format": { + "bit_rate": "1752197", + "duration": "8591.394278", + "filename": "Pirates of the Caribbean I - The Curse of the Black Pearl/Pirates of the Caribbean - The Curse of the Black Pearl.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1881727142", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T07:19:46.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1880203701/78447383", + "bit_rate": "1167303", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "40348526/1934123103", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "433:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8591.394278", + "duration_ts": 773225485, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "205916", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "433:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T07:19:46.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131714", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8590.933333", + "duration_ts": 412364800, + "index": 1, + "max_bit_rate": "213968", + "nb_frames": "402700", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T07:19:46.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "8590.944000", + "duration_ts": 412365312, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "268467", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T07:19:46.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Lady In The Water/Lady In The Water.avi": { + "format": { + "bit_rate": "1022760", + "duration": "6575.909243", + "filename": "Lady In The Water/Lady In The Water.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "840697856", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "885452", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 528, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6575.909243", + "duration_ts": 157664, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "157664", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 528 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "273996", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "This Is Where I Leave You (2014)/This.Is.Where.I.Leave.You.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2267230", + "duration": "6198.591667", + "filename": "This Is Where I Leave You (2014)/This.Is.Where.I.Leave.You.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1756704414", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-12-06T02:43:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2169271", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6198.567375", + "duration_ts": 148765617, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "148617", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-12-06T02:43:29.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93820", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6198.592000", + "duration_ts": 297532416, + "index": 1, + "max_bit_rate": "103832", + "nb_frames": "290559", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-06T02:43:37.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Transformers - The Movie/The.Transformers-The.Movie[1986]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1200103", + "duration": "4888.320000", + "filename": "The Transformers - The Movie/The.Transformers-The.Movie[1986]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733310976", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "998397", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 344, + "coded_width": 616, + "display_aspect_ratio": "77:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4888.320000", + "duration_ts": 122208, + "has_b_frames": 1, + "height": 344, + "index": 0, + "level": 5, + "nb_frames": "122208", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 616 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "117319680", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "The Crow (1994)/The Crow 1994 DVDrip xvid by wildbill666.avi": { + "format": { + "bit_rate": "963545", + "duration": "6096.552000", + "filename": "The Crow (1994)/The Crow 1994 DVDrip xvid by wildbill666.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734287872", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "834585", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6096.548792", + "duration_ts": 146171, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "146171", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116248", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6096.552000", + "duration_ts": 254023, + "index": 1, + "nb_frames": "254023", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Beauty And The Beast (1991)/Beauty.and.the.Beast.1991.1080p.BluRay.x265.10bit.HEVC.mkv": { + "format": { + "bit_rate": "4534555", + "duration": "5505.014000", + "filename": "Beauty And The Beast (1991)/Beauty.and.the.Beast.1991.1080p.BluRay.x265.10bit.HEVC.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3120348916", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-03-27T01:41:17Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5505.014000", + "duration_ts": 5505014, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Cruel Intentions/Cruel Intentions.mp4": { + "format": { + "bit_rate": "1082605", + "duration": "5849.813333", + "filename": "Cruel Intentions/Cruel Intentions.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "791629704", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T05:04:10.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "890947177/37148003", + "bit_rate": "910855", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "37148003/1781894354", + "codec_type": "video", + "coded_height": 462, + "coded_width": 708, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "3776:2079", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5849.760578", + "duration_ts": 526478452, + "has_b_frames": 1, + "height": 462, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "140299", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:04:10.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 708 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "166573", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5849.813333", + "duration_ts": 280791040, + "index": 1, + "max_bit_rate": "239720", + "nb_frames": "274210", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:04:10.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Super 8 (2011)/Super.8.2011.BluRay.720p.DTS.x264-CHD.mkv": { + "format": { + "bit_rate": "8363897", + "duration": "6708.736000", + "filename": "Super 8 (2011)/Super.8.2011.BluRay.720p.DTS.x264-CHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7013897382", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-07T00:35:22.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Super.8.2011.BluRay.720p.DTS.x264-CHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "dts 5.1 156kbps" + }, + "time_base": "1/1000" + } + ] + }, + "Waiting for Superman (2011)/UsaBit.com_waiting.for.superman.limited.dvdrip.x-lpd.avi": { + "format": { + "bit_rate": "877979", + "duration": "6675.967634", + "filename": "Waiting for Superman (2011)/UsaBit.com_waiting.for.superman.limited.dvdrip.x-lpd.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732669952", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "735019", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 624, + "display_aspect_ratio": "39:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6675.967634", + "duration_ts": 160063, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "160063", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130248", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6675.528000", + "duration_ts": 278147, + "index": 1, + "nb_frames": "278147", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Horrible Bosses (2011)/Horrible.Bosses.2011.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "2471468", + "duration": "6337.406667", + "filename": "Horrible Bosses (2011)/Horrible.Bosses.2011.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1957837278", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2013-09-02T01:07:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1964049", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6336.371667", + "duration_ts": 152072920, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "151921", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-02T00:03:34.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "377890", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6337.408000", + "duration_ts": 304195584, + "index": 1, + "max_bit_rate": "430864", + "nb_frames": "297066", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-01T17:20:58.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124219", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6337.408000", + "duration_ts": 304195584, + "index": 2, + "max_bit_rate": "135696", + "nb_frames": "297066", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-01T16:49:16.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Kick-Ass (2010)/Kick-Ass (2010) R5 XViD-MAXSPEED www.torentz.3xforum.ro.avi": { + "format": { + "bit_rate": "1725794", + "duration": "6785.800000", + "filename": "Kick-Ass (2010)/Kick-Ass (2010) R5 XViD-MAXSPEED www.torentz.3xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1463861874", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1335235", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6785.800000", + "duration_ts": 169645, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "169645", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "325123584", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "The Muppets (2011)/The.Muppets.2011.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1493699", + "duration": "5915.285000", + "filename": "The Muppets (2011)/The.Muppets.2011.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1104457008", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-03-02T15:11:30.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64551", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5915.285333", + "duration_ts": 283933696, + "index": 0, + "max_bit_rate": "73544", + "nb_frames": "277279", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-03-02T15:11:30.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1425235", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1248, + "display_aspect_ratio": "26:15", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5915.200958", + "duration_ts": 141964823, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "141823", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-03-02T15:11:33.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1248 + } + ] + }, + "X-Men Origins Wolverine (2009)/X-Men Origins Wolverine Extended.mp4": { + "format": { + "bit_rate": "2662386", + "duration": "6441.471667", + "filename": "X-Men Origins Wolverine (2009)/X-Men Origins Wolverine Extended.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2143711082", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2010-09-04T17:49:45.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2263866", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6441.391667", + "duration_ts": 154593400, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "154439", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-09-04T11:46:48.000000Z", + "handler_name": "HDLiTE", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "394842", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6441.472000", + "duration_ts": 309190656, + "index": 1, + "max_bit_rate": "494864", + "nb_frames": "301944", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-09-04T17:52:38.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Monsters University (2013)/519bc14956194c05b5a0a476674d51f3.mp4": { + "format": { + "bit_rate": "3216049", + "duration": "6227.744000", + "filename": "Monsters University (2013)/519bc14956194c05b5a0a476674d51f3.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2503591445", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2mp41", + "date": "2013-06-20", + "description": "A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.", + "encoder": "Lavf57.82.101", + "genre": "Animation", + "iTunEXTC": "mpaa|G|100|", + "iTunMOVI": "\n \n \n studioWalt Disney Pictures, Pixar Animation StudiosproducersnameJohn LasseternameKori RaenamePeter DoctornameAndrew StantonnameLee UnkrichdirectorsnameDan ScanloncastnameBilly CrystalnameJohn GoodmannameSteve BusceminameHelen MirrennameNoah JohnstonnamePeter SohnnameJoel MurraynameSean HayesnameDave FoleynameCharlie DaynameAlfred MolinanameTyler LabinenameNathan FillionnameAubrey PlazanameBobby MoynihannameJulia SweeneynameBonnie HuntnameJohn KrasinskinameBill HadernameBeth BehrsnameBob PetersonnameJohn RatzenbergernameFrank OznameAva AcresnameSherry LynnscreenwritersnameDan ScanlonnameRobert L. BairdnameDaniel Gerson", + "major_brand": "isom", + "media_type": "9", + "minor_version": "512", + "synopsis": "A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.", + "title": "Monsters University" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2442255", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x31637668", + "codec_tag_string": "hvc1", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1088, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6227.722000", + "duration_ts": 149465328, + "field_order": "progressive", + "has_b_frames": 0, + "height": 1080, + "index": 0, + "level": 120, + "nb_frames": "149316", + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "VideoHandler", + "language": "eng" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x332d6365", + "codec_tag_string": "ec-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6227.738000", + "duration_ts": 298931424, + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "194617", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6227.744000", + "duration_ts": 6227744, + "index": 2, + "nb_frames": "32", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 1170, + "coded_width": 780, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "2:3", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6227.744000", + "duration_ts": 560496960, + "has_b_frames": 0, + "height": 1170, + "index": 3, + "level": -99, + "pix_fmt": "yuvj420p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 780 + } + ] + }, + "W (2008)/W.[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "758226", + "duration": "7762.721054", + "filename": "W (2008)/W.[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735737856", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "636922", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 268, + "coded_width": 644, + "display_aspect_ratio": "161:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7762.721054", + "duration_ts": 186119, + "has_b_frames": 1, + "height": 268, + "index": 0, + "level": 5, + "nb_frames": "186119", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 644 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "323434", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Valerian And The City Of A Thousand Planets (2017)/Valerian.and.the.City.of.a.Thousand.Planets.2017.1080p.WEB-DL.H264.AC3-EVO.mkv": { + "format": { + "bit_rate": "4888135", + "duration": "8236.416000", + "filename": "Valerian And The City Of A Thousand Planets (2017)/Valerian.and.the.City.of.a.Thousand.Planets.2017.1080p.WEB-DL.H264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5032589983", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-11-03T00:05:28.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8236.416000", + "duration_ts": 8236416, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 2, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "A Time to Kill (1996)/A Time to Kill (1996).avi": { + "format": { + "bit_rate": "656979", + "duration": "8968.501208", + "filename": "A Time to Kill (1996)/A Time to Kill (1996).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736514936", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "535654", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 608, + "display_aspect_ratio": "38:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8968.501208", + "duration_ts": 215029, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "215029", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "125559017", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Frankenweenie (2012)/b906c67f2f4d4eb182051c11aacfbd62.mkv": { + "format": { + "bit_rate": "7193070", + "duration": "5216.720000", + "filename": "Frankenweenie (2012)/b906c67f2f4d4eb182051c11aacfbd62.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4690529230", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5216.720000", + "duration_ts": 5216720, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5216.720000", + "duration_ts": 5216720, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Now You See Me 2 (2016)/Now.You.See.Me.2.2016.720p.BluRay.x264.AC3-FuzerHD.mkv": { + "format": { + "bit_rate": "7637883", + "duration": "7753.779000", + "filename": "Now You See Me 2 (2016)/Now.You.See.Me.2.2016.720p.BluRay.x264.AC3-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7402807509", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-09-07T09:57:54Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Chicken Little (2005)/Chicken.Little[2005]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1208667", + "duration": "4855.605606", + "filename": "Chicken Little (2005)/Chicken.Little[2005]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733601792", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "943254", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 556, + "display_aspect_ratio": "139:76", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4855.605606", + "duration_ts": 116418, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "116418", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 556 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "155365183", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/32000" + } + ] + }, + "Gladiator (2000)/Gladiator.2000.10th.Anniversary.Remastered.BluRay.720p.DTS.2Audio.x264-CHD.mkv": { + "format": { + "bit_rate": "7300647", + "duration": "10258.848000", + "filename": "Gladiator (2000)/Gladiator.2000.10th.Anniversary.Remastered.BluRay.720p.DTS.2Audio.x264-CHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "9362028965", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-07-24T03:44:37.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Gladiator.2000.10th.Anniversary.Remastered.BluRay.720p.DTS.2Audio.x264-CHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS-HDMA core 5.1CH 1509kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "AC3 5.1CH 448kbps" + }, + "time_base": "1/1000" + } + ] + }, + "Event Horizon/Event Horizon.avi": { + "format": { + "bit_rate": "2489256", + "duration": "5756.965299", + "filename": "Event Horizon/Event Horizon.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1791320064", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2031891", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5756.965299", + "duration_ts": 138029, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "138029", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "322390057", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Jack Reacher (2012)/Jack.Reacher.2012.DTS-HD.DTS.MULTISUBS.720p.BluRay.x264.HQ-TUSAHD.mkv": { + "format": { + "bit_rate": "8114379", + "duration": "7824.404000", + "filename": "Jack Reacher (2012)/Jack.Reacher.2012.DTS-HD.DTS.MULTISUBS.720p.BluRay.x264.HQ-TUSAHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 47, + "probe_score": 100, + "size": "7936273104", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100", + "title": "Jack.Reacher.2012.DTS-HD.DTS.MULTISUBS.1080p.BluRay.x264.HQ-TUSAHD" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:24.400000000", + "ENCODER": "Lavc57.64.101 libx264", + "language": "eng", + "title": "Jack.Reacher.2012.DTS-HD.DTS.MULTISUBS.1080p.BluRay.x264.HQ-TUSAHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:24.404000000", + "language": "eng", + "title": "English DTS-HD" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:24.404000000", + "language": "eng", + "title": "English DTS" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:05:26.920000000", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:05:26.920000000", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:05:26.920000000", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "ice", + "title": "Icelandic" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.270000000", + "language": "ger", + "title": "German" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "dut", + "title": "Dutch - Flemish" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.275000000", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 720, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.275000000", + "language": "spa", + "title": "Spanish - Castillan" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "gre", + "title": "Greek - Modern" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "tur", + "title": "Turkish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "est", + "title": "Estonian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "lav", + "title": "Latvian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "lit", + "title": "Lithuanaian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "cze", + "title": "Czech" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:51:49.433000000", + "language": "cze", + "title": "Czech forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:51:49.433000000", + "language": "pol", + "title": "Polish forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "bul", + "title": "Bulgarian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "hrv", + "title": "Croatian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "hun", + "title": "Hungarian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "rum", + "title": "Romanian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "slv", + "title": "Slovenian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "slo", + "title": "Slovak" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "srp", + "title": "Serbian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "ukr", + "title": "Ukranian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.270000000", + "language": "rus", + "title": "Russian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 35, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:51:49.599000000", + "language": "rus", + "title": "Russian forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 36, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "heb", + "title": "Hebrew" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 37, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "hin", + "title": "Hindi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 38, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.315000000", + "language": "ara", + "title": "Arabic" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 39, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.390000000", + "language": "chi", + "title": "Chinese" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 40, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.390000000", + "language": "chi", + "title": "Chinese" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 41, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.275000000", + "language": "chi", + "title": "Chinese" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 42, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.390000000", + "language": "kor", + "title": "Korean" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 43, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.390000000", + "language": "tha", + "title": "Thai" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 44, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:39:34.751000000", + "language": "tha", + "title": "Thai forced" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 45, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.390000000", + "language": "ind", + "title": "Indonesian" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.404000", + "duration_ts": 7824404, + "height": 1080, + "index": 46, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:22.270000000", + "language": "may", + "title": "Malay" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Harry Potter And The Goblet Of Fire (2005)/c623394e83eb41dc8b202387f5461c99.mkv": { + "format": { + "bit_rate": "14709426", + "duration": "9425.625000", + "filename": "Harry Potter And The Goblet Of Fire (2005)/c623394e83eb41dc8b202387f5461c99.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "17330692469", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-20T16:33:18.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "13110577", + "DURATION-eng": "02:37:05.625000000", + "NUMBER_OF_BYTES-eng": "15446923653", + "NUMBER_OF_FRAMES-eng": "225989", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1509000", + "DURATION-eng": "02:37:05.408000000", + "NUMBER_OF_BYTES-eng": "1777867584", + "NUMBER_OF_FRAMES-eng": "883632", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "eng", + "title": "English DTS 5.1 @ 1509kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27095", + "DURATION-eng": "02:36:34.719000000", + "NUMBER_OF_BYTES-eng": "31818871", + "NUMBER_OF_FRAMES-eng": "3608", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "18840", + "DURATION-eng": "02:35:59.559000000", + "NUMBER_OF_BYTES-eng": "22041806", + "NUMBER_OF_FRAMES-eng": "3096", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30052", + "DURATION-eng": "02:36:34.719000000", + "NUMBER_OF_BYTES-eng": "35291577", + "NUMBER_OF_FRAMES-eng": "3656", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "ger", + "title": "German (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26991", + "DURATION-eng": "02:36:34.719000000", + "NUMBER_OF_BYTES-eng": "31697469", + "NUMBER_OF_FRAMES-eng": "3616", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "ita", + "title": "Italian (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22420", + "DURATION-eng": "02:36:03.897000000", + "NUMBER_OF_BYTES-eng": "26242932", + "NUMBER_OF_FRAMES-eng": "2988", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "spa", + "title": "Castilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22562", + "DURATION-eng": "02:36:03.897000000", + "NUMBER_OF_BYTES-eng": "26408601", + "NUMBER_OF_FRAMES-eng": "2996", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "spa", + "title": "Latin American" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23363", + "DURATION-eng": "02:36:03.897000000", + "NUMBER_OF_BYTES-eng": "27346320", + "NUMBER_OF_FRAMES-eng": "2962", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9425.625000", + "duration_ts": 9425625, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19941", + "DURATION-eng": "02:22:14.401000000", + "NUMBER_OF_BYTES-eng": "21273925", + "NUMBER_OF_FRAMES-eng": "3415", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-20 16:33:18", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + } + ] + }, + "Transformers - Dark of the Moon (2011)/Transformer.3.2011.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1582043", + "duration": "9263.401667", + "filename": "Transformers - Dark of the Moon (2011)/Transformer.3.2011.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1831888570", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-10-02T09:15:57.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1546828", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9263.254000", + "duration_ts": 889272384, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "222096", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-10-02T09:15:57.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "31995", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9263.402667", + "duration_ts": 222321664, + "index": 1, + "max_bit_rate": "41048", + "nb_frames": "217111", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-10-02T09:16:16.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "Boys Dont Cry/Boys Don't Cry (1999).avi": { + "format": { + "bit_rate": "980223", + "duration": "6846.280000", + "filename": "Boys Dont Cry/Boys Don't Cry (1999).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "838860800", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "844915", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 384, + "coded_width": 672, + "display_aspect_ratio": "7:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6846.280000", + "duration_ts": 171157, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "171157", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "109540480", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Hearts of Darkness - A Filmmaker's Apocalypse/Hearts of Darkness - A Filmmaker's Apocalypse.avi": { + "format": { + "bit_rate": "1625798", + "duration": "5761.255500", + "filename": "Hearts of Darkness - A Filmmaker's Apocalypse/Hearts of Darkness - A Filmmaker's Apocalypse.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1170829778", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1483709", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 384, + "coded_width": 512, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5761.255500", + "duration_ts": 138132, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "138132", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "60384", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5761.248000", + "duration_ts": 240052, + "index": 1, + "nb_frames": "240052", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "61000", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5761.248000", + "duration_ts": 240052, + "index": 2, + "nb_frames": "240052", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "American Movie (1999)/American Movie.avi": { + "format": { + "bit_rate": "965001", + "duration": "6103.478478", + "filename": "American Movie (1999)/American Movie.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736233300", + "start_time": "0.000000", + "tags": { + "IRTD": "R", + "album": "movie", + "artist": "Chris Smith", + "copyright": "1999", + "genre": "documentary", + "language": "English", + "title": "American Movie: The Making Of Northwestern" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "859645", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 540, + "coded_width": 720, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6103.478478", + "duration_ts": 146337, + "has_b_frames": 1, + "height": 540, + "index": 0, + "level": -99, + "nb_frames": "146337", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "73239928", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/12000" + } + ] + }, + "PI/PI.mp4": { + "format": { + "bit_rate": "4456288", + "duration": "5026.654967", + "filename": "PI/PI.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2800028049", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T06:31:30.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1446452849/60421485", + "bit_rate": "4316776", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "15232403/729308547", + "codec_type": "video", + "coded_height": 386, + "coded_width": 716, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "2864:1737", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5026.654967", + "duration_ts": 452398947, + "has_b_frames": 1, + "height": 386, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "120335", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "8:9", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T06:31:30.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 716 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "133860", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5026.581333", + "duration_ts": 241275904, + "index": 1, + "max_bit_rate": "212688", + "nb_frames": "235621", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T06:31:30.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Demolition Man (1993)/c80adabba7a94316bd1465a03cf75160.mkv": { + "format": { + "bit_rate": "13350111", + "duration": "6902.921000", + "filename": "Demolition Man (1993)/c80adabba7a94316bd1465a03cf75160.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "11519345812", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:01.357982Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 802, + "coded_width": 1920, + "display_aspect_ratio": "960:401", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 802, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "(DTS 5.1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "language": "eng", + "title": "Commentary (DPL II)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6902.921000", + "duration_ts": 6902921, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6902.921000", + "duration_ts": 6902921, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "(SDH)" + }, + "time_base": "1/1000" + } + ] + }, + "Mad Max/Mad Max.avi": { + "format": { + "bit_rate": "1077650", + "duration": "5463.797130", + "filename": "Mad Max/Mad Max.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736008192", + "start_time": "0.000000", + "tags": { + "ISBJ": "Mad Max - Special Edition (C) MGM/UA", + "artist": "EPiSODE", + "comment": "", + "copyright": "", + "encoder": "Nandub v1.0rc2", + "title": "Mad Max - Special Edition (C) MGM/UA" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "940309", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 576, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5463.797130", + "duration_ts": 131000, + "has_b_frames": 0, + "height": 240, + "index": 0, + "level": -99, + "nb_frames": "131000", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124800", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5463.744000", + "duration_ts": 227656, + "index": 1, + "nb_frames": "227656", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Hunger Games Mockingjay Part 2 (2015)/The.Hunger.Games.Mockingjay.Part.2.2015.720p.BluRay.x264-SPARKS.mkv": { + "format": { + "bit_rate": "5707310", + "duration": "8217.280000", + "filename": "The Hunger Games Mockingjay Part 2 (2015)/The.Hunger.Games.Mockingjay.Part.2.2015.720p.BluRay.x264-SPARKS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5862320643", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-10T16:52:45.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5065543", + "BPS-eng": "5065543", + "DURATION": "02:16:57.181000000", + "DURATION-eng": "02:16:57.181000000", + "NUMBER_OF_BYTES": "5203060808", + "NUMBER_OF_BYTES-eng": "5203060808", + "NUMBER_OF_FRAMES": "197015", + "NUMBER_OF_FRAMES-eng": "197015", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-10 16:52:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-10 16:52:45", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:16:57.280000000", + "DURATION-eng": "02:16:57.280000000", + "NUMBER_OF_BYTES": "657382400", + "NUMBER_OF_BYTES-eng": "657382400", + "NUMBER_OF_FRAMES": "256790", + "NUMBER_OF_FRAMES-eng": "256790", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-03-10 16:52:45", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-03-10 16:52:45", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Mystery Alaska/Mystery.avi": { + "format": { + "bit_rate": "858433", + "duration": "6843.240000", + "filename": "Mystery Alaska/Mystery.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734308352", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "715042", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6843.240000", + "duration_ts": 171081, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "171081", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130480", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6843.240000", + "duration_ts": 285135, + "index": 1, + "nb_frames": "285135", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "X-Men Apocalypse (2016)/x-men.apocalypse.2016.proper.720p.mkv": { + "format": { + "bit_rate": "4067137", + "duration": "8636.298000", + "filename": "X-Men Apocalypse (2016)/x-men.apocalypse.2016.proper.720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4390626357", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "display_aspect_ratio": "16256:6783", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "254:255", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:23:56.295000000", + "ENCODER": "Lavc57.64.100 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:23:56.298000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8636.298000", + "duration_ts": 8636298, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:29:52.469000000", + "language": "eng", + "title": "English Forced" + }, + "time_base": "1/1000" + } + ] + }, + "Mad Max 2 - The Road Warrior/Mad Max 2 - The Road Warrior.avi": { + "format": { + "bit_rate": "1029484", + "duration": "5726.559893", + "filename": "Mad Max 2 - The Road Warrior/Mad Max 2 - The Road Warrior.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736925696", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "892049", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5726.559893", + "duration_ts": 137300, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "137300", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "91621334", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Inside Job/defaced-insidejob-xvid.avi": { + "format": { + "bit_rate": "901077", + "duration": "6518.506790", + "filename": "Inside Job/defaced-insidejob-xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734210048", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "761056", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6518.506790", + "duration_ts": 156288, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "156288", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "10000000/417083", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127312", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6518.496000", + "duration_ts": 271604, + "index": 1, + "nb_frames": "271604", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Unbearable Lightness Of Being/Unbearable.Lightness.Of.Being Part 3.avi": { + "format": { + "bit_rate": "1649702", + "duration": "3561.519878", + "filename": "Unbearable Lightness Of Being/Unbearable.Lightness.Of.Being Part 3.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734431232", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "12570329/524288", + "bit_rate": "1456775", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "524288/12570329", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3561.519878", + "duration_ts": 85391, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "85391", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "12570329/524288", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "524288/12570329", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "85177197", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Seth Rogens Hilarity For Charity (2018)/Seth.Rogens.Hilarity.for.Charity.2018.720p.NF.WEB-DL.DD5.1.x264-monkee.mkv": { + "format": { + "bit_rate": "3360190", + "duration": "4225.568000", + "filename": "Seth Rogens Hilarity For Charity (2018)/Seth.Rogens.Hilarity.for.Charity.2018.720p.NF.WEB-DL.DD5.1.x264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 27, + "probe_score": 100, + "size": "1774839400", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-04-19T10:35:02.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2969923", + "BPS-eng": "2969923", + "DURATION": "01:10:25.221000000", + "DURATION-eng": "01:10:25.221000000", + "NUMBER_OF_BYTES": "1568572663", + "NUMBER_OF_BYTES-eng": "1568572663", + "NUMBER_OF_FRAMES": "101304", + "NUMBER_OF_FRAMES-eng": "101304", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:10:25.568000000", + "DURATION-eng": "01:10:25.568000000", + "NUMBER_OF_BYTES": "202827264", + "NUMBER_OF_BYTES-eng": "202827264", + "NUMBER_OF_FRAMES": "132049", + "NUMBER_OF_FRAMES-eng": "132049", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "98", + "BPS-eng": "98", + "DURATION": "01:08:51.627000000", + "DURATION-eng": "01:08:51.627000000", + "NUMBER_OF_BYTES": "50740", + "NUMBER_OF_BYTES-eng": "50740", + "NUMBER_OF_FRAMES": "1245", + "NUMBER_OF_FRAMES-eng": "1245", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "109", + "BPS-eng": "109", + "DURATION": "01:09:00.386000000", + "DURATION-eng": "01:09:00.386000000", + "NUMBER_OF_BYTES": "56800", + "NUMBER_OF_BYTES-eng": "56800", + "NUMBER_OF_FRAMES": "1426", + "NUMBER_OF_FRAMES-eng": "1426", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "137", + "BPS-eng": "137", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "71312", + "NUMBER_OF_BYTES-eng": "71312", + "NUMBER_OF_FRAMES": "1376", + "NUMBER_OF_FRAMES-eng": "1376", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:09:00.094000000", + "DURATION-eng": "01:09:00.094000000", + "NUMBER_OF_BYTES": "38668", + "NUMBER_OF_BYTES-eng": "38668", + "NUMBER_OF_FRAMES": "1152", + "NUMBER_OF_FRAMES-eng": "1152", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:08:59.510000000", + "DURATION-eng": "01:08:59.510000000", + "NUMBER_OF_BYTES": "43788", + "NUMBER_OF_BYTES-eng": "43788", + "NUMBER_OF_FRAMES": "1283", + "NUMBER_OF_FRAMES-eng": "1283", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "152", + "BPS-eng": "152", + "DURATION": "01:08:59.094000000", + "DURATION-eng": "01:08:59.094000000", + "NUMBER_OF_BYTES": "78923", + "NUMBER_OF_BYTES-eng": "78923", + "NUMBER_OF_FRAMES": "1187", + "NUMBER_OF_FRAMES-eng": "1187", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "91", + "BPS-eng": "91", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "47368", + "NUMBER_OF_BYTES-eng": "47368", + "NUMBER_OF_FRAMES": "1304", + "NUMBER_OF_FRAMES-eng": "1304", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "89", + "BPS-eng": "89", + "DURATION": "01:09:00.428000000", + "DURATION-eng": "01:09:00.428000000", + "NUMBER_OF_BYTES": "46121", + "NUMBER_OF_BYTES-eng": "46121", + "NUMBER_OF_FRAMES": "1287", + "NUMBER_OF_FRAMES-eng": "1287", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:08:51.461000000", + "DURATION-eng": "01:08:51.461000000", + "NUMBER_OF_BYTES": "41741", + "NUMBER_OF_BYTES-eng": "41741", + "NUMBER_OF_FRAMES": "881", + "NUMBER_OF_FRAMES-eng": "881", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "89", + "BPS-eng": "89", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "46133", + "NUMBER_OF_BYTES-eng": "46133", + "NUMBER_OF_FRAMES": "1355", + "NUMBER_OF_FRAMES-eng": "1355", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "137", + "BPS-eng": "137", + "DURATION": "01:09:00.094000000", + "DURATION-eng": "01:09:00.094000000", + "NUMBER_OF_BYTES": "71165", + "NUMBER_OF_BYTES-eng": "71165", + "NUMBER_OF_FRAMES": "1212", + "NUMBER_OF_FRAMES-eng": "1212", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:09:00.219000000", + "DURATION-eng": "01:09:00.219000000", + "NUMBER_OF_BYTES": "42530", + "NUMBER_OF_BYTES-eng": "42530", + "NUMBER_OF_FRAMES": "1184", + "NUMBER_OF_FRAMES-eng": "1184", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "70", + "BPS-eng": "70", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "36715", + "NUMBER_OF_BYTES-eng": "36715", + "NUMBER_OF_FRAMES": "1263", + "NUMBER_OF_FRAMES-eng": "1263", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "94", + "BPS-eng": "94", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "49036", + "NUMBER_OF_BYTES-eng": "49036", + "NUMBER_OF_FRAMES": "1372", + "NUMBER_OF_FRAMES-eng": "1372", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:08:55.715000000", + "DURATION-eng": "01:08:55.715000000", + "NUMBER_OF_BYTES": "41428", + "NUMBER_OF_BYTES-eng": "41428", + "NUMBER_OF_FRAMES": "1326", + "NUMBER_OF_FRAMES-eng": "1326", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "81", + "BPS-eng": "81", + "DURATION": "01:09:00.511000000", + "DURATION-eng": "01:09:00.511000000", + "NUMBER_OF_BYTES": "42191", + "NUMBER_OF_BYTES-eng": "42191", + "NUMBER_OF_FRAMES": "1011", + "NUMBER_OF_FRAMES-eng": "1011", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "73", + "BPS-eng": "73", + "DURATION": "01:08:59.969000000", + "DURATION-eng": "01:08:59.969000000", + "NUMBER_OF_BYTES": "38278", + "NUMBER_OF_BYTES-eng": "38278", + "NUMBER_OF_FRAMES": "1237", + "NUMBER_OF_FRAMES-eng": "1237", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "84", + "BPS-eng": "84", + "DURATION": "01:09:00.303000000", + "DURATION-eng": "01:09:00.303000000", + "NUMBER_OF_BYTES": "43844", + "NUMBER_OF_BYTES-eng": "43844", + "NUMBER_OF_FRAMES": "1289", + "NUMBER_OF_FRAMES-eng": "1289", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "81", + "BPS-eng": "81", + "DURATION": "01:09:07.602000000", + "DURATION-eng": "01:09:07.602000000", + "NUMBER_OF_BYTES": "42105", + "NUMBER_OF_BYTES-eng": "42105", + "NUMBER_OF_FRAMES": "1292", + "NUMBER_OF_FRAMES-eng": "1292", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:08:59.051000000", + "DURATION-eng": "01:08:59.051000000", + "NUMBER_OF_BYTES": "42873", + "NUMBER_OF_BYTES-eng": "42873", + "NUMBER_OF_FRAMES": "1247", + "NUMBER_OF_FRAMES-eng": "1247", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "41457", + "NUMBER_OF_BYTES-eng": "41457", + "NUMBER_OF_FRAMES": "1192", + "NUMBER_OF_FRAMES-eng": "1192", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "216", + "BPS-eng": "216", + "DURATION": "01:09:11.606000000", + "DURATION-eng": "01:09:11.606000000", + "NUMBER_OF_BYTES": "112201", + "NUMBER_OF_BYTES-eng": "112201", + "NUMBER_OF_FRAMES": "1364", + "NUMBER_OF_FRAMES-eng": "1364", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "88", + "BPS-eng": "88", + "DURATION": "01:09:00.261000000", + "DURATION-eng": "01:09:00.261000000", + "NUMBER_OF_BYTES": "45933", + "NUMBER_OF_BYTES-eng": "45933", + "NUMBER_OF_FRAMES": "1132", + "NUMBER_OF_FRAMES-eng": "1132", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:08:58.718000000", + "DURATION-eng": "01:08:58.718000000", + "NUMBER_OF_BYTES": "38703", + "NUMBER_OF_BYTES-eng": "38703", + "NUMBER_OF_FRAMES": "1381", + "NUMBER_OF_FRAMES-eng": "1381", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4225.568000", + "duration_ts": 4225568, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:09:03.389000000", + "DURATION-eng": "01:09:03.389000000", + "NUMBER_OF_BYTES": "37762", + "NUMBER_OF_BYTES-eng": "37762", + "NUMBER_OF_FRAMES": "1409", + "NUMBER_OF_FRAMES-eng": "1409", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-19 10:35:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-19 10:35:02", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Future World (2018)/f7meuvqR8jJ4y4wM6C2m.mkv": { + "format": { + "bit_rate": "4968145", + "duration": "5287.072000", + "filename": "Future World (2018)/f7meuvqR8jJ4y4wM6C2m.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "3283368016", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-02T18:12:11.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0", + "title": "Future.World.2018.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 792, + "coded_width": 1912, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "239:99", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 792, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4582900", + "BPS-eng": "4582900", + "DURATION": "01:28:06.988000000", + "DURATION-eng": "01:28:06.988000000", + "NUMBER_OF_BYTES": "3028717456", + "NUMBER_OF_BYTES-eng": "3028717456", + "NUMBER_OF_FRAMES": "126762", + "NUMBER_OF_FRAMES-eng": "126762", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-25 06:47:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-25 06:47:21", + "language": "eng", + "title": "Future.World.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1912 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:28:07.072000000", + "DURATION-eng": "01:28:07.072000000", + "NUMBER_OF_BYTES": "253779456", + "NUMBER_OF_BYTES-eng": "253779456", + "NUMBER_OF_FRAMES": "165221", + "NUMBER_OF_FRAMES-eng": "165221", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-25 06:47:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-25 06:47:21", + "language": "eng", + "title": "Future.World.2018.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5287.072000", + "duration_ts": 5287072, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5287.072000", + "duration_ts": 5287072, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "32", + "BPS-eng": "32", + "DURATION": "01:23:31.974000000", + "DURATION-eng": "01:23:31.974000000", + "NUMBER_OF_BYTES": "20055", + "NUMBER_OF_BYTES-eng": "20055", + "NUMBER_OF_FRAMES": "797", + "NUMBER_OF_FRAMES-eng": "797", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-05-25 06:47:21", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-25 06:47:21", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5287.072000", + "duration_ts": 475836480, + "has_b_frames": 0, + "height": 600, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5287.072000", + "duration_ts": 475836480, + "has_b_frames": 0, + "height": 176, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5287.072000", + "duration_ts": 475836480, + "has_b_frames": 0, + "height": 120, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5287.072000", + "duration_ts": 475836480, + "has_b_frames": 0, + "height": 882, + "index": 7, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "Boundin (2003)/boundin.2003.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4643506", + "duration": "282.699000", + "filename": "Boundin (2003)/boundin.2003.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "164089331", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T00:30:47.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Harry Potter And The Sorcerer's Stone (2001)/aecb78220c104e68acb71f7a1016a041.mkv": { + "format": { + "bit_rate": "14442947", + "duration": "9141.344000", + "filename": "Harry Potter And The Sorcerer's Stone (2001)/aecb78220c104e68acb71f7a1016a041.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "16503493891", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-12-27T09:30:51.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 150, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "13133591", + "DURATION-eng": "02:32:21.341000000", + "NUMBER_OF_BYTES-eng": "15007329448", + "NUMBER_OF_FRAMES-eng": "219173", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1280000", + "DURATION-eng": "02:32:21.344000000", + "NUMBER_OF_BYTES-eng": "1462615040", + "NUMBER_OF_FRAMES-eng": "285667", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43", + "DURATION-eng": "02:22:02.806000000", + "NUMBER_OF_BYTES-eng": "46270", + "NUMBER_OF_FRAMES-eng": "1260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "02:30:54.170000000", + "NUMBER_OF_BYTES-eng": "47684", + "NUMBER_OF_FRAMES-eng": "1302", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22623", + "DURATION-eng": "02:32:00.027000000", + "NUMBER_OF_BYTES-eng": "25790861", + "NUMBER_OF_FRAMES-eng": "2546", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "chi", + "title": "Traditional Madanrin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21228", + "DURATION-eng": "02:31:59.652000000", + "NUMBER_OF_BYTES-eng": "24199260", + "NUMBER_OF_FRAMES-eng": "2510", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "chi", + "title": "Traditional Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "41", + "DURATION-eng": "02:31:59.944000000", + "NUMBER_OF_BYTES-eng": "47559", + "NUMBER_OF_FRAMES-eng": "1256", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37", + "DURATION-eng": "02:30:50.999000000", + "NUMBER_OF_BYTES-eng": "42371", + "NUMBER_OF_FRAMES-eng": "1428", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34", + "DURATION-eng": "02:30:57.382000000", + "NUMBER_OF_BYTES-eng": "38974", + "NUMBER_OF_FRAMES-eng": "1169", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9141.344000", + "duration_ts": 9141344, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35", + "DURATION-eng": "02:22:02.889000000", + "NUMBER_OF_BYTES-eng": "37779", + "NUMBER_OF_FRAMES-eng": "845", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-27 09:30:51", + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "Underworld 2 - Evolution/Underworld.2.Evolution[2006]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "961147", + "duration": "6122.960000", + "filename": "Underworld 2 - Evolution/Underworld.2.Evolution[2006]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735633408", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "839443", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 238, + "coded_width": 588, + "display_aspect_ratio": "42:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6122.960000", + "duration_ts": 153074, + "has_b_frames": 1, + "height": 238, + "index": 0, + "level": 5, + "nb_frames": "153074", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 588 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "255123", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Mr Right (2015)/Mr.Right.2015.DVDRip.XviD-UNDERCOVER.avi": { + "format": { + "bit_rate": "1030771", + "duration": "5729.014958", + "filename": "Mr Right (2015)/Mr.Right.2015.DVDRip.XviD-UNDERCOVER.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "738162930", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "889909", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5729.014958", + "duration_ts": 137359, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": 3, + "nb_frames": "137359", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "238706", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Iron Man 3 (2013)/ff030bcaea9f43ec83379a7d9c04e369.mkv": { + "format": { + "bit_rate": "9291229", + "duration": "7832.896000", + "filename": "Iron Man 3 (2013)/ff030bcaea9f43ec83379a7d9c04e369.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 49, + "probe_score": 100, + "size": "9097154191", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-16T22:51:37.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7015119", + "DURATION-eng": "02:10:32.116000000", + "NUMBER_OF_BYTES-eng": "6867903936", + "NUMBER_OF_FRAMES-eng": "187783", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1536000", + "DURATION-eng": "02:10:31.296000000", + "NUMBER_OF_BYTES-eng": "1503608832", + "NUMBER_OF_FRAMES-eng": "244728", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "02:10:32.896000000", + "NUMBER_OF_BYTES-eng": "187989504", + "NUMBER_OF_FRAMES-eng": "244778", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "eng", + "title": "Commentary with writer/director Shane Black and writer Drew Pearce" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "61", + "DURATION-eng": "02:10:00.292000000", + "NUMBER_OF_BYTES-eng": "59702", + "NUMBER_OF_FRAMES-eng": "1740", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "71", + "DURATION-eng": "02:10:00.292000000", + "NUMBER_OF_BYTES-eng": "69817", + "NUMBER_OF_FRAMES-eng": "2168", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "18337", + "DURATION-eng": "02:10:17.393000000", + "NUMBER_OF_BYTES-eng": "17918891", + "NUMBER_OF_FRAMES-eng": "3474", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33225", + "DURATION-eng": "02:10:17.310000000", + "NUMBER_OF_BYTES-eng": "32467135", + "NUMBER_OF_FRAMES-eng": "3450", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19753", + "DURATION-eng": "02:10:17.309000000", + "NUMBER_OF_BYTES-eng": "19302333", + "NUMBER_OF_FRAMES-eng": "3464", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "20775", + "DURATION-eng": "02:10:17.309000000", + "NUMBER_OF_BYTES-eng": "20301118", + "NUMBER_OF_FRAMES-eng": "3684", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31065", + "DURATION-eng": "02:10:18.936000000", + "NUMBER_OF_BYTES-eng": "30362038", + "NUMBER_OF_FRAMES-eng": "3450", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32021", + "DURATION-eng": "02:10:17.643000000", + "NUMBER_OF_BYTES-eng": "31291376", + "NUMBER_OF_FRAMES-eng": "3002", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28215", + "DURATION-eng": "02:10:17.477000000", + "NUMBER_OF_BYTES-eng": "27571873", + "NUMBER_OF_FRAMES-eng": "2242", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34410", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "33623438", + "NUMBER_OF_FRAMES-eng": "3514", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28883", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "28222835", + "NUMBER_OF_FRAMES-eng": "3508", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34273", + "DURATION-eng": "02:10:17.435000000", + "NUMBER_OF_BYTES-eng": "33491520", + "NUMBER_OF_FRAMES-eng": "3414", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30606", + "DURATION-eng": "02:10:17.351000000", + "NUMBER_OF_BYTES-eng": "29907903", + "NUMBER_OF_FRAMES-eng": "3430", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31757", + "DURATION-eng": "02:10:17.351000000", + "NUMBER_OF_BYTES-eng": "31031959", + "NUMBER_OF_FRAMES-eng": "3438", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "ice" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30644", + "DURATION-eng": "02:10:17.351000000", + "NUMBER_OF_BYTES-eng": "29945028", + "NUMBER_OF_FRAMES-eng": "3364", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "41505", + "DURATION-eng": "02:10:17.309000000", + "NUMBER_OF_BYTES-eng": "40557568", + "NUMBER_OF_FRAMES-eng": "3448", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "20028", + "DURATION-eng": "02:10:17.309000000", + "NUMBER_OF_BYTES-eng": "19571309", + "NUMBER_OF_FRAMES-eng": "2892", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "16074", + "DURATION-eng": "02:10:17.351000000", + "NUMBER_OF_BYTES-eng": "15707866", + "NUMBER_OF_FRAMES-eng": "3432", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33327", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "32565751", + "NUMBER_OF_FRAMES-eng": "3546", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "lav" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33759", + "DURATION-eng": "02:10:18.019000000", + "NUMBER_OF_BYTES-eng": "32991657", + "NUMBER_OF_FRAMES-eng": "3480", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "lit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31517", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "30797373", + "NUMBER_OF_FRAMES-eng": "3532", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "may" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35202", + "DURATION-eng": "02:10:18.936000000", + "NUMBER_OF_BYTES-eng": "34405504", + "NUMBER_OF_FRAMES-eng": "3436", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38935", + "DURATION-eng": "02:10:17.435000000", + "NUMBER_OF_BYTES-eng": "38047202", + "NUMBER_OF_FRAMES-eng": "3454", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28233", + "DURATION-eng": "02:10:17.810000000", + "NUMBER_OF_BYTES-eng": "27590228", + "NUMBER_OF_FRAMES-eng": "3260", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34911", + "DURATION-eng": "02:10:17.142000000", + "NUMBER_OF_BYTES-eng": "34113141", + "NUMBER_OF_FRAMES-eng": "3436", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34525", + "DURATION-eng": "02:10:18.727000000", + "NUMBER_OF_BYTES-eng": "33742833", + "NUMBER_OF_FRAMES-eng": "3452", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "por", + "title": "Iberian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28946", + "DURATION-eng": "02:10:17.351000000", + "NUMBER_OF_BYTES-eng": "28285878", + "NUMBER_OF_FRAMES-eng": "3122", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33233", + "DURATION-eng": "02:10:17.142000000", + "NUMBER_OF_BYTES-eng": "32474317", + "NUMBER_OF_FRAMES-eng": "3458", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33673", + "DURATION-eng": "02:10:17.810000000", + "NUMBER_OF_BYTES-eng": "32906188", + "NUMBER_OF_FRAMES-eng": "3440", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "slo" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33178", + "DURATION-eng": "02:10:17.644000000", + "NUMBER_OF_BYTES-eng": "32421942", + "NUMBER_OF_FRAMES-eng": "3434", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "spa", + "title": "Castilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43640", + "DURATION-eng": "02:10:17.602000000", + "NUMBER_OF_BYTES-eng": "42645317", + "NUMBER_OF_FRAMES-eng": "3458", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "spa", + "title": "Latin American" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30863", + "DURATION-eng": "02:10:17.393000000", + "NUMBER_OF_BYTES-eng": "30159297", + "NUMBER_OF_FRAMES-eng": "2098", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 35, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21626", + "DURATION-eng": "02:10:17.268000000", + "NUMBER_OF_BYTES-eng": "21132958", + "NUMBER_OF_FRAMES-eng": "3474", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 36, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33523", + "DURATION-eng": "02:10:18.019000000", + "NUMBER_OF_BYTES-eng": "32760766", + "NUMBER_OF_FRAMES-eng": "3458", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 37, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35077", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "34275201", + "NUMBER_OF_FRAMES-eng": "3560", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "ukr" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 38, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "136", + "DURATION-eng": "02:10:00.292000000", + "NUMBER_OF_BYTES-eng": "132633", + "NUMBER_OF_FRAMES-eng": "2488", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "eng", + "title": "Commentary - SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 39, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "64622", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "63144616", + "NUMBER_OF_FRAMES-eng": "4834", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "dan", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 40, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "50773", + "DURATION-eng": "02:10:17.518000000", + "NUMBER_OF_BYTES-eng": "49615763", + "NUMBER_OF_FRAMES-eng": "3388", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "dut", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 41, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "58503", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "57165683", + "NUMBER_OF_FRAMES-eng": "4844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "fin", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 42, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "64229", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "62761354", + "NUMBER_OF_FRAMES-eng": "4844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "fre", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 43, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "63816", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "62357615", + "NUMBER_OF_FRAMES-eng": "4844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "ita", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 44, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56850", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "55550830", + "NUMBER_OF_FRAMES-eng": "4844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "nor", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 45, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67943", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "66389735", + "NUMBER_OF_FRAMES-eng": "4846", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "por", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 46, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "69242", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "67659504", + "NUMBER_OF_FRAMES-eng": "4846", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "rus", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 47, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "65988", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "64480305", + "NUMBER_OF_FRAMES-eng": "4844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "spa", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7832.896000", + "duration_ts": 7832896, + "index": 48, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "55440", + "DURATION-eng": "02:10:17.101000000", + "NUMBER_OF_BYTES-eng": "54172795", + "NUMBER_OF_FRAMES-eng": "4844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-16 22:51:37", + "language": "swe", + "title": "Commentary" + }, + "time_base": "1/1000" + } + ] + }, + "Moana (2016)/Moana 2016 BRRip x264 1080p-NPW.mp4": { + "format": { + "bit_rate": "4693643", + "duration": "6432.768000", + "filename": "Moana (2016)/Moana 2016 BRRip x264 1080p-NPW.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3774140041", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2036-02-06T06:28:16.000000Z", + "encoder": "HandBrake 0.10.2 2015060900", + "major_brand": "mp42", + "minor_version": "512" + } + }, + "streams": [ + { + "avg_frame_rate": "1264895187/52756670", + "bit_rate": "4048412", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "26378335/1264895187", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6432.760000", + "duration_ts": 578948400, + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "154232", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2036-02-06T06:28:16.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "638573", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6432.768000", + "duration_ts": 308772864, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "301536", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2036-02-06T06:28:16.000000Z", + "handler_name": "Surround", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6432.768000", + "duration_ts": 6432768, + "index": 2, + "nb_frames": "20", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2036-02-06T06:28:16.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Bubba Ho-tep/Bubba Ho-tep 2002 XviD DVDRip.avi": { + "format": { + "bit_rate": "1060793", + "duration": "5537.281750", + "filename": "Bubba Ho-tep/Bubba Ho-tep 2002 XviD DVDRip.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734238720", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "904821", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 672, + "display_aspect_ratio": "42:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5537.281750", + "duration_ts": 132762, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "132762", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "143264", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5537.280000", + "duration_ts": 230720, + "index": 1, + "nb_frames": "230720", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Idiocracy/Idiocracy[2006]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1161814", + "duration": "5051.843510", + "filename": "Idiocracy/Idiocracy[2006]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733663232", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "960313", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 300, + "coded_width": 564, + "display_aspect_ratio": "47:25", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5051.843510", + "duration_ts": 121123, + "has_b_frames": 1, + "height": 300, + "index": 0, + "level": 5, + "nb_frames": "121123", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 564 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "121244244", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "I Tonya (2017)/I.Tonya.2017.720p.BluRay.DTS.x264-CyTSuNee.mkv": { + "format": { + "bit_rate": "5153898", + "duration": "7198.024000", + "filename": "I Tonya (2017)/I.Tonya.2017.720p.BluRay.DTS.x264-CyTSuNee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4637235426", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "32512:13617", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "254:255", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:59:58.024000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:59:58.003000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7198.024000", + "duration_ts": 7198024, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:55:03.521000000", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "The Happiest Baby on the Block (2002)/The_Happiest_Baby_on_the_Block_QandA-DVDrip.avi": { + "format": { + "bit_rate": "1139408", + "duration": "1559.224333", + "filename": "The Happiest Baby on the Block (2002)/The_Happiest_Baby_on_the_Block_QandA-DVDrip.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "222074112", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "999225", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 624, + "display_aspect_ratio": "13:10", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "1559.224333", + "duration_ts": 37384, + "has_b_frames": 0, + "height": 480, + "index": 0, + "level": 1, + "nb_frames": "37384", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "59688", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "The Rock/The Rock.avi": { + "format": { + "bit_rate": "719195", + "duration": "8179.888222", + "filename": "The Rock/The Rock.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735367168", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "579441", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 528, + "display_aspect_ratio": "11:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8179.888222", + "duration_ts": 196121, + "has_b_frames": 1, + "height": 240, + "index": 0, + "level": 5, + "nb_frames": "196121", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 528 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127048", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8179.848000", + "duration_ts": 340827, + "index": 1, + "nb_frames": "340827", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Hunt For Red October (1990)/7489f3ed13474f1e8408b40bd75985b5.mkv": { + "format": { + "bit_rate": "12495810", + "duration": "8108.160000", + "filename": "The Hunt For Red October (1990)/7489f3ed13474f1e8408b40bd75985b5.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 35, + "probe_score": 100, + "size": "12664753736", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-11T22:28:09.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 820, + "coded_width": 1920, + "display_aspect_ratio": "96:41", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 820, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "11423481", + "DURATION-eng": "02:15:08.100000000", + "NUMBER_OF_BYTES-eng": "11577841124", + "NUMBER_OF_FRAMES-eng": "194400", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:15:08.128000000", + "NUMBER_OF_BYTES-eng": "648650240", + "NUMBER_OF_FRAMES-eng": "253379", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "97827", + "DURATION-eng": "02:15:08.160000000", + "NUMBER_OF_BYTES-eng": "99149642", + "NUMBER_OF_FRAMES-eng": "380070", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "eng", + "title": "Commentary with director John McTiernan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40491", + "DURATION-eng": "02:09:56.456000000", + "NUMBER_OF_BYTES-eng": "39460823", + "NUMBER_OF_FRAMES-eng": "3059", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23583", + "DURATION-eng": "02:11:09.403000000", + "NUMBER_OF_BYTES-eng": "23198754", + "NUMBER_OF_FRAMES-eng": "3107", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "50637", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "49806908", + "NUMBER_OF_FRAMES-eng": "3172", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48538", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "47742266", + "NUMBER_OF_FRAMES-eng": "3150", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42491", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "41793988", + "NUMBER_OF_FRAMES-eng": "3208", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36638", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "36037061", + "NUMBER_OF_FRAMES-eng": "3112", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44037", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "43315317", + "NUMBER_OF_FRAMES-eng": "3336", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "hrv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42351", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "41656153", + "NUMBER_OF_FRAMES-eng": "3188", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43882", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "43162763", + "NUMBER_OF_FRAMES-eng": "3128", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46659", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "45894218", + "NUMBER_OF_FRAMES-eng": "3240", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30403", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "29904172", + "NUMBER_OF_FRAMES-eng": "3152", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26587", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "26151047", + "NUMBER_OF_FRAMES-eng": "3176", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "hin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44801", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "44066098", + "NUMBER_OF_FRAMES-eng": "3117", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45839", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "45086905", + "NUMBER_OF_FRAMES-eng": "3190", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "ice" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26385", + "DURATION-eng": "02:10:57.141000000", + "NUMBER_OF_BYTES-eng": "25914293", + "NUMBER_OF_FRAMES-eng": "2938", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27587", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "27134807", + "NUMBER_OF_FRAMES-eng": "3174", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46227", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "45468744", + "NUMBER_OF_FRAMES-eng": "3188", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "lav" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42331", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "41636943", + "NUMBER_OF_FRAMES-eng": "3148", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "lit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32278", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "31749162", + "NUMBER_OF_FRAMES-eng": "3068", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "44606", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "43874199", + "NUMBER_OF_FRAMES-eng": "3148", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "43609", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "42893636", + "NUMBER_OF_FRAMES-eng": "3145", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45402", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "44657586", + "NUMBER_OF_FRAMES-eng": "3192", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42998", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "42293178", + "NUMBER_OF_FRAMES-eng": "3292", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36550", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "35951124", + "NUMBER_OF_FRAMES-eng": "3186", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "srp" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42097", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "41406357", + "NUMBER_OF_FRAMES-eng": "3188", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "slo" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40689", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "40022242", + "NUMBER_OF_FRAMES-eng": "3196", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31916", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "31393269", + "NUMBER_OF_FRAMES-eng": "3030", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42578", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "41880091", + "NUMBER_OF_FRAMES-eng": "3134", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39953", + "DURATION-eng": "02:11:08.736000000", + "NUMBER_OF_BYTES-eng": "39297944", + "NUMBER_OF_FRAMES-eng": "3158", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "ukr" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24457", + "DURATION-eng": "02:11:34.678000000", + "NUMBER_OF_BYTES-eng": "24135746", + "NUMBER_OF_FRAMES-eng": "1525", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "eng", + "title": "Commentary with director John McTiernan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22664", + "DURATION-eng": "02:11:34.470000000", + "NUMBER_OF_BYTES-eng": "22366013", + "NUMBER_OF_FRAMES-eng": "1922", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8108.160000", + "duration_ts": 8108160, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15978", + "DURATION-eng": "02:11:34.595000000", + "NUMBER_OF_BYTES-eng": "15768071", + "NUMBER_OF_FRAMES-eng": "1815", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-11 22:28:09", + "language": "kor" + }, + "time_base": "1/1000" + } + ] + }, + "Aqua Teen Hunger Force Colon Movie Film for Theaters/athf.avi": { + "format": { + "bit_rate": "1141558", + "duration": "5136.172708", + "filename": "Aqua Teen Hunger Force Colon Movie Film for Theaters/athf.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732905472", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1004248", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 544, + "display_aspect_ratio": "17:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5136.172708", + "duration_ts": 123145, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "123145", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 544 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "214007", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Harry Potter And The Order Of The Phoenix (2007)/Harry Potter and the Order of the Phoenix (2007) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv": { + "format": { + "bit_rate": "1816423", + "duration": "7800.293000", + "filename": "Harry Potter And The Order Of The Phoenix (2007)/Harry Potter and the Order of the Phoenix (2007) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "1771079876", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101", + "title": "Harry Potter and the Order of the Phoenix (2007) - " + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "799879", + "BPS-eng": "799879", + "DURATION": "02:10:00.293000000", + "DURATION-eng": "02:10:00.293000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "779912011", + "NUMBER_OF_BYTES-eng": "779912011", + "NUMBER_OF_FRAMES": "187020", + "NUMBER_OF_FRAMES-eng": "187020", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:58:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:58:25", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "127869", + "BPS-eng": "127869", + "DURATION": "02:10:00.265000000", + "DURATION-eng": "02:10:00.235000000", + "NUMBER_OF_BYTES": "124676639", + "NUMBER_OF_BYTES-eng": "124676639", + "NUMBER_OF_FRAMES": "182818", + "NUMBER_OF_FRAMES-eng": "182818", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:58:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:58:25", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "160000", + "BPS-eng": "160000", + "DURATION": "02:10:00.288000000", + "DURATION-eng": "02:10:00.288000000", + "NUMBER_OF_BYTES": "156005760", + "NUMBER_OF_BYTES-eng": "156005760", + "NUMBER_OF_FRAMES": "243759", + "NUMBER_OF_FRAMES-eng": "243759", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:58:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:58:25", + "language": "hin", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7800.293000", + "duration_ts": 7800293, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "02:07:56.009000000", + "DURATION-eng": "02:07:54.009000000", + "NUMBER_OF_BYTES": "48287", + "NUMBER_OF_BYTES-eng": "48287", + "NUMBER_OF_FRAMES": "1301", + "NUMBER_OF_FRAMES-eng": "1301", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:58:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:58:25", + "language": "eng", + "title": "eng subs - KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7800.293000", + "duration_ts": 7800293, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "00:00:20.000000000", + "DURATION-eng": "00:00:13.000000000", + "NUMBER_OF_BYTES": "51", + "NUMBER_OF_BYTES-eng": "51", + "NUMBER_OF_FRAMES": "2", + "NUMBER_OF_FRAMES-eng": "2", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:58:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:58:25", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + } + ] + }, + "A Clockwork Orange (1971)/06291e36e5414033a7619eb1cc45fad9.mkv": { + "format": { + "bit_rate": "7487089", + "duration": "8196.672000", + "filename": "A Clockwork Orange (1971)/06291e36e5414033a7619eb1cc45fad9.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7671152407", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-01-18T22:46:11.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Eddie Murphy - Raw/Eddie_Murphy_raw_divx_full.avi": { + "format": { + "bit_rate": "456148", + "duration": "5334.985854", + "filename": "Eddie Murphy - Raw/Eddie_Murphy_raw_divx_full.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "304193536", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "1000000/66649", + "bit_rate": "418387", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "66649/1000000", + "codec_type": "video", + "coded_height": 240, + "coded_width": 352, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5334.985854", + "duration_ts": 80046, + "has_b_frames": 0, + "height": 240, + "index": 0, + "level": -99, + "nb_frames": "80046", + "pix_fmt": "yuv420p", + "r_frame_rate": "1000000/66649", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "66649/1000000", + "width": 352 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "31848", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/22050", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "21238578", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "22050", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/3981" + } + ] + }, + "The Secret Of NIMH (1982)/The.Secret.Of.NIMH.1982.DTS-HD.DTS.NORDICSUBS.720p.BluRay.x264.HQ-TUSAHD.mkv": { + "format": { + "bit_rate": "10126521", + "duration": "4965.002000", + "filename": "The Secret Of NIMH (1982)/The.Secret.Of.NIMH.1982.DTS-HD.DTS.NORDICSUBS.720p.BluRay.x264.HQ-TUSAHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "6284774839", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100", + "title": "The.Secret.Of.NIMH.1982.DTS-HD.DTS.NORDICSUBS.1080p.BluRay.x264.HQ-TUSAHD" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 694, + "coded_width": 1280, + "display_aspect_ratio": "640:347", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 694, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:22:45.002000000", + "ENCODER": "Lavc57.64.101 libx264", + "language": "eng", + "title": "The.Secret.Of.NIMH.1982.DTS-HD.DTS.NORDICSUBS.1080p.BluRay.x264.HQ-TUSAHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:22:45.002000000", + "language": "eng", + "title": "English DTS-HD" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:22:44.991000000", + "language": "eng", + "title": "English DTS" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4965.002000", + "duration_ts": 4965002, + "height": 1080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:17:28.714000000", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4965.002000", + "duration_ts": 4965002, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:17:25.478000000", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4965.002000", + "duration_ts": 4965002, + "height": 1080, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:17:26.514000000", + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4965.002000", + "duration_ts": 4965002, + "height": 1080, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:22:42.151000000", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Red Dragon/Red Dragon.avi": { + "format": { + "bit_rate": "1013862", + "duration": "7466.136000", + "filename": "Red Dragon/Red Dragon.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "946204672", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "888861", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7466.132799", + "duration_ts": 179008, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "179008", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112296", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7466.136000", + "duration_ts": 311089, + "index": 1, + "nb_frames": "311089", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Steve Martin And Martin Short An Evening You Will Forget For The Rest Of Your Life (2018)/Steve.Martin.and.Martin.Short.An.Evening.You.Will.Forget.for.the.Rest.of.Your.Life.2018.1080p.NF.WEB-DL.DD5.1.x264-monkee.mkv": { + "format": { + "bit_rate": "3707641", + "duration": "4434.464000", + "filename": "Steve Martin And Martin Short An Evening You Will Forget For The Rest Of Your Life (2018)/Steve.Martin.and.Martin.Short.An.Evening.You.Will.Forget.for.the.Rest.of.Your.Life.2018.1080p.NF.WEB-DL.DD5.1.x264-monkee.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 28, + "probe_score": 100, + "size": "2055175122", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-07-06T18:02:42.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3318019", + "BPS-eng": "3318019", + "DURATION": "01:13:54.180000000", + "DURATION-eng": "01:13:54.180000000", + "NUMBER_OF_BYTES": "1839086927", + "NUMBER_OF_BYTES-eng": "1839086927", + "NUMBER_OF_FRAMES": "106314", + "NUMBER_OF_FRAMES-eng": "106314", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:13:54.464000000", + "DURATION-eng": "01:13:54.464000000", + "NUMBER_OF_BYTES": "212854272", + "NUMBER_OF_BYTES-eng": "212854272", + "NUMBER_OF_FRAMES": "138577", + "NUMBER_OF_FRAMES-eng": "138577", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "79", + "BPS-eng": "79", + "DURATION": "01:11:13.727000000", + "DURATION-eng": "01:11:13.727000000", + "NUMBER_OF_BYTES": "42656", + "NUMBER_OF_BYTES-eng": "42656", + "NUMBER_OF_FRAMES": "1058", + "NUMBER_OF_FRAMES-eng": "1058", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "81", + "BPS-eng": "81", + "DURATION": "01:11:13.727000000", + "DURATION-eng": "01:11:13.727000000", + "NUMBER_OF_BYTES": "43760", + "NUMBER_OF_BYTES-eng": "43760", + "NUMBER_OF_FRAMES": "1076", + "NUMBER_OF_FRAMES-eng": "1076", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "126", + "BPS-eng": "126", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "68137", + "NUMBER_OF_BYTES-eng": "68137", + "NUMBER_OF_FRAMES": "1061", + "NUMBER_OF_FRAMES-eng": "1061", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "139", + "BPS-eng": "139", + "DURATION": "01:11:13.727000000", + "DURATION-eng": "01:11:13.727000000", + "NUMBER_OF_BYTES": "74506", + "NUMBER_OF_BYTES-eng": "74506", + "NUMBER_OF_FRAMES": "1060", + "NUMBER_OF_FRAMES-eng": "1060", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "38837", + "NUMBER_OF_BYTES-eng": "38837", + "NUMBER_OF_FRAMES": "1051", + "NUMBER_OF_FRAMES-eng": "1051", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:11:38.752000000", + "DURATION-eng": "01:11:38.752000000", + "NUMBER_OF_BYTES": "39816", + "NUMBER_OF_BYTES-eng": "39816", + "NUMBER_OF_FRAMES": "1054", + "NUMBER_OF_FRAMES-eng": "1054", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "121", + "BPS-eng": "121", + "DURATION": "01:11:38.627000000", + "DURATION-eng": "01:11:38.627000000", + "NUMBER_OF_BYTES": "65087", + "NUMBER_OF_BYTES-eng": "65087", + "NUMBER_OF_FRAMES": "1014", + "NUMBER_OF_FRAMES-eng": "1014", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "65", + "BPS-eng": "65", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "35194", + "NUMBER_OF_BYTES-eng": "35194", + "NUMBER_OF_FRAMES": "973", + "NUMBER_OF_FRAMES-eng": "973", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "75", + "BPS-eng": "75", + "DURATION": "01:11:38.670000000", + "DURATION-eng": "01:11:38.670000000", + "NUMBER_OF_BYTES": "40393", + "NUMBER_OF_BYTES-eng": "40393", + "NUMBER_OF_FRAMES": "1052", + "NUMBER_OF_FRAMES-eng": "1052", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "62", + "BPS-eng": "62", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "33397", + "NUMBER_OF_BYTES-eng": "33397", + "NUMBER_OF_FRAMES": "1057", + "NUMBER_OF_FRAMES-eng": "1057", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "35894", + "NUMBER_OF_BYTES-eng": "35894", + "NUMBER_OF_FRAMES": "1037", + "NUMBER_OF_FRAMES-eng": "1037", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "124", + "BPS-eng": "124", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "66872", + "NUMBER_OF_BYTES-eng": "66872", + "NUMBER_OF_FRAMES": "1016", + "NUMBER_OF_FRAMES-eng": "1016", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "69", + "BPS-eng": "69", + "DURATION": "01:11:38.752000000", + "DURATION-eng": "01:11:38.752000000", + "NUMBER_OF_BYTES": "37528", + "NUMBER_OF_BYTES-eng": "37528", + "NUMBER_OF_FRAMES": "1051", + "NUMBER_OF_FRAMES-eng": "1051", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "41", + "BPS-eng": "41", + "DURATION": "01:11:18.148000000", + "DURATION-eng": "01:11:18.148000000", + "NUMBER_OF_BYTES": "22287", + "NUMBER_OF_BYTES-eng": "22287", + "NUMBER_OF_FRAMES": "1052", + "NUMBER_OF_FRAMES-eng": "1052", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "77", + "BPS-eng": "77", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "41905", + "NUMBER_OF_BYTES-eng": "41905", + "NUMBER_OF_FRAMES": "1061", + "NUMBER_OF_FRAMES-eng": "1061", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "01:11:33.497000000", + "DURATION-eng": "01:11:33.497000000", + "NUMBER_OF_BYTES": "34346", + "NUMBER_OF_BYTES-eng": "34346", + "NUMBER_OF_FRAMES": "1023", + "NUMBER_OF_FRAMES-eng": "1023", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "71", + "BPS-eng": "71", + "DURATION": "01:11:38.586000000", + "DURATION-eng": "01:11:38.586000000", + "NUMBER_OF_BYTES": "38673", + "NUMBER_OF_BYTES-eng": "38673", + "NUMBER_OF_FRAMES": "1059", + "NUMBER_OF_FRAMES-eng": "1059", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "65", + "BPS-eng": "65", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "35177", + "NUMBER_OF_BYTES-eng": "35177", + "NUMBER_OF_FRAMES": "974", + "NUMBER_OF_FRAMES-eng": "974", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "68", + "BPS-eng": "68", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "37074", + "NUMBER_OF_BYTES-eng": "37074", + "NUMBER_OF_FRAMES": "1052", + "NUMBER_OF_FRAMES-eng": "1052", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "71", + "BPS-eng": "71", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "38564", + "NUMBER_OF_BYTES-eng": "38564", + "NUMBER_OF_FRAMES": "1062", + "NUMBER_OF_FRAMES-eng": "1062", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "38775", + "NUMBER_OF_BYTES-eng": "38775", + "NUMBER_OF_FRAMES": "1056", + "NUMBER_OF_FRAMES-eng": "1056", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "68", + "BPS-eng": "68", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "36593", + "NUMBER_OF_BYTES-eng": "36593", + "NUMBER_OF_FRAMES": "1061", + "NUMBER_OF_FRAMES-eng": "1061", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "181", + "BPS-eng": "181", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "97642", + "NUMBER_OF_BYTES-eng": "97642", + "NUMBER_OF_FRAMES": "1061", + "NUMBER_OF_FRAMES-eng": "1061", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "71", + "BPS-eng": "71", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "38223", + "NUMBER_OF_BYTES-eng": "38223", + "NUMBER_OF_FRAMES": "1045", + "NUMBER_OF_FRAMES-eng": "1045", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "71", + "BPS-eng": "71", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "38235", + "NUMBER_OF_BYTES-eng": "38235", + "NUMBER_OF_FRAMES": "1060", + "NUMBER_OF_FRAMES-eng": "1060", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4434.464000", + "duration_ts": 4434464, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:11:38.460000000", + "DURATION-eng": "01:11:38.460000000", + "NUMBER_OF_BYTES": "39783", + "NUMBER_OF_BYTES-eng": "39783", + "NUMBER_OF_FRAMES": "1059", + "NUMBER_OF_FRAMES-eng": "1059", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-06 18:02:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-06 18:02:42", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "The Circle (2017)/the.circle.2017.720p.webrip.x264-strife.mkv": { + "format": { + "bit_rate": "3523726", + "duration": "6566.816000", + "filename": "The Circle (2017)/the.circle.2017.720p.webrip.x264-strife.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2892458241", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-03T12:05:36.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3138063", + "BPS-eng": "3138063", + "DURATION": "01:49:26.268000000", + "DURATION-eng": "01:49:26.268000000", + "NUMBER_OF_BYTES": "2575670562", + "NUMBER_OF_BYTES-eng": "2575670562", + "NUMBER_OF_FRAMES": "157433", + "NUMBER_OF_FRAMES-eng": "157433", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-03 12:05:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-03 12:05:36", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:49:26.816000000", + "DURATION-eng": "01:49:26.816000000", + "NUMBER_OF_BYTES": "315207168", + "NUMBER_OF_BYTES-eng": "315207168", + "NUMBER_OF_FRAMES": "205213", + "NUMBER_OF_FRAMES-eng": "205213", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-03 12:05:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-03 12:05:36", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6566.816000", + "duration_ts": 6566816, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "90", + "BPS-eng": "90", + "DURATION": "01:44:15.124000000", + "DURATION-eng": "01:44:15.124000000", + "NUMBER_OF_BYTES": "70737", + "NUMBER_OF_BYTES-eng": "70737", + "NUMBER_OF_FRAMES": "1662", + "NUMBER_OF_FRAMES-eng": "1662", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-07-03 12:05:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-07-03 12:05:36", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Star Wars Episode III Revenge Of The Sith (2005)/26c6aa3bc6d7441e994638f62d8bdde6.mkv": { + "format": { + "bit_rate": "12582666", + "duration": "8405.856000", + "filename": "Star Wars Episode III Revenge Of The Sith (2005)/26c6aa3bc6d7441e994638f62d8bdde6.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "13221010361", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-01-01T19:50:35.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 818, + "coded_width": 1920, + "display_aspect_ratio": "960:409", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 818, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8405.856000", + "duration_ts": 8405856, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Four Rooms/Four Rooms.avi": { + "format": { + "bit_rate": "969911", + "duration": "5864.823156", + "filename": "Four Rooms/Four Rooms.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "711045120", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "843845", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 392, + "coded_width": 720, + "display_aspect_ratio": "90:49", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5864.823156", + "duration_ts": 140615, + "has_b_frames": 1, + "height": 392, + "index": 0, + "level": 5, + "nb_frames": "140615", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113320", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5864.760000", + "duration_ts": 244365, + "index": 1, + "nb_frames": "244365", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Along Came Polly/Along Came Polly.avi": { + "format": { + "bit_rate": "1294010", + "duration": "5416.464000", + "filename": "Along Came Polly/Along Came Polly.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "876120064", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1170898", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5416.458125", + "duration_ts": 129865, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "129865", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "110408", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5416.464000", + "duration_ts": 225686, + "index": 1, + "nb_frames": "225686", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Armageddon (1998)/Armageddon.1998.720p.BluRay.DTS.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "7751608", + "duration": "9050.291000", + "filename": "Armageddon (1998)/Armageddon.1998.720p.BluRay.DTS.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8769288571", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-04-26T14:46:24Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Garden State/Garden State.m4v": { + "format": { + "bit_rate": "1216751", + "duration": "6134.912000", + "filename": "Garden State/Garden State.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "933082986", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T07:30:50.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2085851609/87017470", + "bit_rate": "631072", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "43508735/2085851609", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "431:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6134.876044", + "duration_ts": 552138844, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "147056", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "431:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T07:30:50.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132576", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6134.912000", + "duration_ts": 294475776, + "index": 1, + "max_bit_rate": "234664", + "nb_frames": "287574", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T07:30:50.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6134.912000", + "duration_ts": 294475776, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "191716", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T07:30:50.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Little Miss Sunshine/Little.Miss.Sunshine[2006]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "956146", + "duration": "6154.112446", + "filename": "Little Miss Sunshine/Little.Miss.Sunshine[2006]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735528960", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "834837", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 620, + "display_aspect_ratio": "155:64", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6154.112446", + "duration_ts": 147551, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "147551", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 620 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "256421", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "LOGAN (2017)/Logan.2017.1080p.WEB-DL.H264.AC3-EVO.mkv": { + "format": { + "bit_rate": "4936542", + "duration": "8265.180000", + "filename": "LOGAN (2017)/Logan.2017.1080p.WEB-DL.H264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5100176355", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-15T11:46:02.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8265.180000", + "duration_ts": 8265180, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1914, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "957:400", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1914 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8265.180000", + "duration_ts": 8265180, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Sleeping Beauty (1959)/Sleeping.Beauty[1959]DvDrip-aXXo .avi": { + "format": { + "bit_rate": "1303232", + "duration": "4514.389389", + "filename": "Sleeping Beauty (1959)/Sleeping.Beauty[1959]DvDrip-aXXo .avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735412224", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1133924", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 274, + "coded_width": 720, + "display_aspect_ratio": "360:137", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4514.389389", + "duration_ts": 108237, + "has_b_frames": 1, + "height": 274, + "index": 0, + "level": 5, + "nb_frames": "108237", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "188100", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Sleepers (1996)/Sleepers[1996]Eng.DvDrip.NeRoZ.avi": { + "format": { + "bit_rate": "1339812", + "duration": "8452.675918", + "filename": "Sleepers (1996)/Sleepers[1996]Eng.DvDrip.NeRoZ.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1415625530", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1199553", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 480, + "coded_width": 640, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8452.640000", + "duration_ts": 211316, + "has_b_frames": 0, + "height": 480, + "index": 0, + "level": 3, + "nb_frames": "211316", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8452.675918", + "duration_ts": 323579, + "index": 1, + "nb_frames": "323579", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "Pans Labyrinth (2006)/b6af208a24c84e2ab297cb7d7a58fdb1.mkv": { + "format": { + "bit_rate": "3201580", + "duration": "7162.208000", + "filename": "Pans Labyrinth (2006)/b6af208a24c84e2ab297cb7d7a58fdb1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2866297924", + "start_time": "0.005000", + "tags": { + "creation_time": "2018-11-11T17:57:49.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2", + "title": "Pans.Labyrinth.2006.720p.BluRay.x264-x0r" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "2559533", + "BPS-eng": "2559533", + "DURATION": "01:59:22.197000000", + "DURATION-eng": "01:59:22.197000000", + "NUMBER_OF_BYTES": "2291485440", + "NUMBER_OF_BYTES-eng": "2291485440", + "NUMBER_OF_FRAMES": "171721", + "NUMBER_OF_FRAMES-eng": "171721", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-11 17:57:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-11 17:57:49", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:59:22.176000000", + "DURATION-eng": "01:59:22.176000000", + "NUMBER_OF_BYTES": "401081856", + "NUMBER_OF_BYTES-eng": "401081856", + "NUMBER_OF_FRAMES": "223818", + "NUMBER_OF_FRAMES-eng": "223818", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-11 17:57:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-11 17:57:49", + "language": "spa", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "01:59:22.208000000", + "DURATION-eng": "01:59:22.208000000", + "NUMBER_OF_BYTES": "171892992", + "NUMBER_OF_BYTES-eng": "171892992", + "NUMBER_OF_FRAMES": "223819", + "NUMBER_OF_FRAMES-eng": "223819", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-11 17:57:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-11 17:57:49", + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7162.208000", + "duration_ts": 7162208, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "01:51:24.470000000", + "DURATION-eng": "01:51:24.470000000", + "NUMBER_OF_BYTES": "26651", + "NUMBER_OF_BYTES-eng": "26651", + "NUMBER_OF_FRAMES": "869", + "NUMBER_OF_FRAMES-eng": "869", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 64bit built on Mar 1 2015 01:50:05", + "_STATISTICS_WRITING_DATE_UTC": "2018-11-11 17:57:49", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-11 17:57:49", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Scott Pilgrim vs the World (2010)/Scott Pilgrim vs the World (2010) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi": { + "format": { + "bit_rate": "1474019", + "duration": "6755.952142", + "filename": "Scott Pilgrim vs the World (2010)/Scott Pilgrim vs the World (2010) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1244800574", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.8.3, Feb 16 201019:42:50" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1281202", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6755.952142", + "duration_ts": 161981, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "161981", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "10000000/417083", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "161835840", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Scott Pilgrim vs the World (2010) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro" + }, + "time_base": "1/24000" + } + ] + }, + "Wrath Of The Titans (2012)/Wrath.of.the.Titans.2012.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "2159149", + "duration": "5972.078333", + "filename": "Wrath Of The Titans (2012)/Wrath.of.the.Titans.2012.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1611826383", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-06-13T10:05:50.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2061356", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5972.049417", + "duration_ts": 573316744, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "143186", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-06-13T10:05:50.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93952", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5972.079456", + "duration_ts": 263368704, + "index": 1, + "max_bit_rate": "141224", + "nb_frames": "257196", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-13T10:13:28.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/44100" + } + ] + }, + "X2 (2003)/X2.2003.1080p.BluRay.x264-nikt0.mkv": { + "format": { + "bit_rate": "6587373", + "duration": "8027.488000", + "filename": "X2 (2003)/X2.2003.1080p.BluRay.x264-nikt0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "6610007505", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-25T10:07:41Z", + "ENCODER": "Lavf57.7.2", + "title": "X2.2003.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5752938", + "DURATION-eng": "02:13:47.478000000", + "NUMBER_OF_BYTES-eng": "5772698824", + "NUMBER_OF_FRAMES-eng": "192467", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:45:33" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "02:13:47.488000000", + "NUMBER_OF_BYTES-eng": "449539328", + "NUMBER_OF_FRAMES-eng": "250859", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:45:33", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "02:13:47.488000000", + "NUMBER_OF_BYTES-eng": "192659712", + "NUMBER_OF_FRAMES-eng": "250859", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:45:33", + "language": "eng", + "title": "Stereo commentary 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "02:13:47.488000000", + "NUMBER_OF_BYTES-eng": "192659712", + "NUMBER_OF_FRAMES-eng": "250859", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:45:33", + "language": "eng", + "title": "Stereo commentary 2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8027.488000", + "duration_ts": 8027488, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "34", + "DURATION-eng": "02:04:18.951000000", + "NUMBER_OF_BYTES-eng": "31789", + "NUMBER_OF_FRAMES-eng": "901", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:45:33", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Art & Copy (2009)/vmt-artcopy-xvid.avi": { + "format": { + "bit_rate": "1109604", + "duration": "5298.214882", + "filename": "Art & Copy (2009)/vmt-artcopy-xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734865408", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "943027", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5298.214882", + "duration_ts": 127030, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "127030", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "153880", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5297.352000", + "duration_ts": 220723, + "index": 1, + "nb_frames": "220723", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Ant-Man (2015)/Ant-Man (2015) 1080p NL Subs.mkv": { + "format": { + "bit_rate": "4361565", + "duration": "7026.657000", + "filename": "Ant-Man (2015)/Ant-Man (2015) 1080p NL Subs.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3830902681", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-01-03T20:28:52.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1036, + "coded_width": 1920, + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1036, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2850216", + "BPS-eng": "2850216", + "DURATION": "01:57:06.645000000", + "DURATION-eng": "01:57:06.645000000", + "NUMBER_OF_BYTES": "2503432515", + "NUMBER_OF_BYTES-eng": "2503432515", + "NUMBER_OF_FRAMES": "168471", + "NUMBER_OF_FRAMES-eng": "168471", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-03 20:28:52", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-03 20:28:52", + "language": "eng", + "title": "Ant-Man (2015) 1080p" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508997", + "BPS-eng": "1508997", + "DURATION": "01:57:06.657000000", + "DURATION-eng": "01:57:06.657000000", + "NUMBER_OF_BYTES": "1325400976", + "NUMBER_OF_BYTES-eng": "1325400976", + "NUMBER_OF_FRAMES": "658748", + "NUMBER_OF_FRAMES-eng": "658748", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-03 20:28:52", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-03 20:28:52", + "language": "eng", + "title": "English DTS 5.1 @ 1536 Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7026.657000", + "duration_ts": 7026657, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "49", + "BPS-eng": "49", + "DURATION": "01:56:36.322000000", + "DURATION-eng": "01:56:36.322000000", + "NUMBER_OF_BYTES": "43129", + "NUMBER_OF_BYTES-eng": "43129", + "NUMBER_OF_FRAMES": "1147", + "NUMBER_OF_FRAMES-eng": "1147", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-03 20:28:52", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-03 20:28:52", + "language": "dut", + "title": "Nederlandse ondertiteling (Dutch retail subs)" + }, + "time_base": "1/1000" + } + ] + }, + "The Royal Tenenbaums/The.Royal.Tenenbaums.2001.720p.HDTV.x264-HDL.mkv": { + "format": { + "bit_rate": "5695230", + "duration": "6580.637000", + "filename": "The Royal Tenenbaums/The.Royal.Tenenbaums.2001.720p.HDTV.x264-HDL.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4684780655", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-28T20:15:25.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 7, + "start_time": "0.007000", + "tags": { + "language": "eng", + "title": "DTS 5.1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6580.637000", + "duration_ts": 6580637, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Little Mermaid (1989)/The.Little.Mermaid.1989.720p.BluRay.DTS.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "7699765", + "duration": "4968.787000", + "filename": "The Little Mermaid (1989)/The.Little.Mermaid.1989.720p.BluRay.DTS.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4782312010", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-06-18T15:23:22Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "David Cross Oh Come On (2019)/c23cd5afca98460b8ae740470e2b6569.mkv": { + "format": { + "bit_rate": "3363051", + "duration": "4204.800000", + "filename": "David Cross Oh Come On (2019)/c23cd5afca98460b8ae740470e2b6569.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1767619909", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-02T16:51:32.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3137043", + "DURATION-eng": "01:10:04.784000000", + "NUMBER_OF_BYTES-eng": "1648823541", + "NUMBER_OF_FRAMES-eng": "100814", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-02 16:51:32", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "224000", + "DURATION-eng": "01:10:04.800000000", + "NUMBER_OF_BYTES-eng": "117734400", + "NUMBER_OF_FRAMES-eng": "131400", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-02 16:51:32", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4204.800000", + "duration_ts": 4204800, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "107", + "DURATION-eng": "01:09:43.092000000", + "NUMBER_OF_BYTES-eng": "56072", + "NUMBER_OF_FRAMES-eng": "1422", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-02 16:51:32", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Star Wars Episode I The Phantom Menace (1999)/ec478fc7a2c14c74ac582ea0a2277343.mkv": { + "format": { + "bit_rate": "10649475", + "duration": "8170.923000", + "filename": "Star Wars Episode I The Phantom Menace (1999)/ec478fc7a2c14c74ac582ea0a2277343.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "10877005883", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-01-01T19:08:27.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 818, + "coded_width": 1920, + "display_aspect_ratio": "960:409", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 818, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8170.923000", + "duration_ts": 8170923, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8170.923000", + "duration_ts": 8170923, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "non-English" + }, + "time_base": "1/1000" + } + ] + }, + "Coraline/refined-coraline-blu720p.mkv": { + "format": { + "bit_rate": "6224704", + "duration": "6036.113600", + "filename": "Coraline/refined-coraline-blu720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4696628260", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 696, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/20000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English DTS 1509kbps" + }, + "time_base": "1/20000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6036.113600", + "duration_ts": 120722272, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/20000" + } + ] + }, + "Hotel Artemis (2018)/6f8ba7cb41824925b53de96409150547.mkv": { + "format": { + "bit_rate": "12108927", + "duration": "5636.089000", + "filename": "Hotel Artemis (2018)/6f8ba7cb41824925b53de96409150547.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8530874235", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French DTS 1509kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English DTS 1509kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5636.089000", + "duration_ts": 5636089, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5636.089000", + "duration_ts": 5636089, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + } + ] + }, + "The World Is Not Enough (1999)/The.World.Is.Not.Enough.1999.720p.BluRay.DTS-HD.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "6793152", + "duration": "7700.401000", + "filename": "The World Is Not Enough (1999)/The.World.Is.Not.Enough.1999.720p.BluRay.DTS-HD.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "6538750260", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:08:20.401000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD HRA", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:08:20.394000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Chronicles Of Narnia The Voyage Of The Dawn Treader (2010)/The.Chronicles.of.Narnia.The.Voyage.of.the.Dawn.Treader.2010.x265.mkv": { + "format": { + "bit_rate": "13241306", + "duration": "6760.768000", + "filename": "The Chronicles Of Narnia The Voyage Of The Dawn Treader (2010)/The.Chronicles.of.Narnia.The.Voyage.of.the.Dawn.Treader.2010.x265.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "11190175205", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2017-10-12T16:20:35.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1088, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "24594056", + "BPS-eng": "24594056", + "DURATION": "01:52:40.754000000", + "DURATION-eng": "01:52:40.754000000", + "ENCODER": "Lavc58.35.100 libx265", + "NUMBER_OF_BYTES": "20784296072", + "NUMBER_OF_BYTES-eng": "20784296072", + "NUMBER_OF_FRAMES": "162096", + "NUMBER_OF_FRAMES-eng": "162096", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 16:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 16:20:35", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3981958", + "BPS-eng": "3981958", + "DURATION": "01:52:40.756000000", + "DURATION-eng": "01:52:40.758000000", + "NUMBER_OF_BYTES": "3365132512", + "NUMBER_OF_BYTES-eng": "3365132512", + "NUMBER_OF_FRAMES": "633821", + "NUMBER_OF_FRAMES-eng": "633821", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 16:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 16:20:35", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "01:52:40.768000000", + "DURATION-eng": "01:52:40.768000000", + "NUMBER_OF_BYTES": "189301504", + "NUMBER_OF_BYTES-eng": "189301504", + "NUMBER_OF_FRAMES": "211274", + "NUMBER_OF_FRAMES-eng": "211274", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 16:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 16:20:35", + "language": "eng", + "title": "English commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6760.768000", + "duration_ts": 6760768, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "23874", + "BPS-eng": "23874", + "DURATION": "01:52:37.835000000", + "DURATION-eng": "01:51:34.938000000", + "NUMBER_OF_BYTES": "19980037", + "NUMBER_OF_BYTES-eng": "19980037", + "NUMBER_OF_FRAMES": "2580", + "NUMBER_OF_FRAMES-eng": "2580", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 16:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 16:20:35", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6760.768000", + "duration_ts": 6760768, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "20867", + "BPS-eng": "20867", + "DURATION": "01:52:37.835000000", + "DURATION-eng": "01:51:34.938000000", + "NUMBER_OF_BYTES": "17463335", + "NUMBER_OF_BYTES-eng": "17463335", + "NUMBER_OF_FRAMES": "2476", + "NUMBER_OF_FRAMES-eng": "2476", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 16:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 16:20:35", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6760.768000", + "duration_ts": 6760768, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "23582", + "BPS-eng": "23582", + "DURATION": "01:52:37.835000000", + "DURATION-eng": "01:51:27.889000000", + "NUMBER_OF_BYTES": "19714753", + "NUMBER_OF_BYTES-eng": "19714753", + "NUMBER_OF_FRAMES": "2554", + "NUMBER_OF_FRAMES-eng": "2554", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 16:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 16:20:35", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + } + ] + }, + "Glory/Glory.mp4": { + "format": { + "bit_rate": "1551626", + "duration": "7329.255267", + "filename": "Glory/Glory.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1421532976", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T23:56:20.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2081044462/69437833", + "bit_rate": "1414373", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "10125249/606905269", + "codec_type": "video", + "coded_height": 470, + "coded_width": 710, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "2272:1269", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.255267", + "duration_ts": 659632974, + "has_b_frames": 1, + "height": 470, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "219657", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T23:56:20.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 710 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132725", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7329.237333", + "duration_ts": 351803392, + "index": 1, + "max_bit_rate": "204176", + "nb_frames": "343558", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T23:56:20.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Expendables (2010)/The.Expendables.2010.720p.BRRip.XviD.AC3-ViSiON.avi": { + "format": { + "bit_rate": "3220763", + "duration": "5944.280000", + "filename": "The Expendables (2010)/The.Expendables.2010.720p.BRRip.XviD.AC3-ViSiON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2393139966", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "2984832", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5944.280000", + "duration_ts": 148607, + "has_b_frames": 1, + "height": 544, + "index": 0, + "level": 5, + "nb_frames": "148607", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "166439840", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/28000" + } + ] + }, + "Go/Go.m4v": { + "format": { + "bit_rate": "1634977", + "duration": "6115.104000", + "filename": "Go/Go.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1249756989", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T17:27:16.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "32988375/1375877", + "bit_rate": "1081644", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1375877/65976750", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "431:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6115.008889", + "duration_ts": 550350800, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "146615", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "431:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T17:27:16.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164089", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6115.093333", + "duration_ts": 293524480, + "index": 1, + "max_bit_rate": "269216", + "nb_frames": "286645", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T17:27:16.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6115.104000", + "duration_ts": 293524992, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "191097", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T17:27:16.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Star Wars Episode VI Return Of The Jedi (1983)/836e3e56073843e583faba73194d1720.mkv": { + "format": { + "bit_rate": "13076012", + "duration": "8087.382000", + "filename": "Star Wars Episode VI Return Of The Jedi (1983)/836e3e56073843e583faba73194d1720.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "13218838337", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-01-21T13:05:23.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 818, + "coded_width": 1920, + "display_aspect_ratio": "960:409", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 818, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-ES", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8087.382000", + "duration_ts": 8087382, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8087.382000", + "duration_ts": 8087382, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "non-English" + }, + "time_base": "1/1000" + } + ] + }, + "Jay and Silent Bob Strike Back/Jay and Silent Bob Strike Back.mkv": { + "format": { + "bit_rate": "2134132", + "duration": "6264.778500", + "filename": "Jay and Silent Bob Strike Back/Jay and Silent Bob Strike Back.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1671233689", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 364, + "coded_width": 708, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "41949:18200", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 364, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "237:200", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 708 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Empire Records/Empire Records.mp4": { + "format": { + "bit_rate": "1290433", + "duration": "6419.379633", + "filename": "Empire Records/Empire Records.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1035472594", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T05:22:29.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "420660000/17507399", + "bit_rate": "1119895", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "17507399/841320000", + "codec_type": "video", + "coded_height": 364, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "640:273", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6419.379633", + "duration_ts": 577744167, + "has_b_frames": 1, + "height": 364, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "154242", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:22:29.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165116", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6419.349333", + "duration_ts": 308128768, + "index": 1, + "max_bit_rate": "268480", + "nb_frames": "300907", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:22:29.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Back To The Future (1985)/3508ed57f4814540963b9a63af87f118.mkv": { + "format": { + "bit_rate": "12142471", + "duration": "6961.003000", + "filename": "Back To The Future (1985)/3508ed57f4814540963b9a63af87f118.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "10565472734", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf54.63.104", + "creation_time": "2013-11-12T16:28:01.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "Forced French subtitles" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles (commentary 1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles (commentary 2)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English subtitles (commentary 1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6961.003000", + "duration_ts": 6961003, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English subtitles (commentary 2)" + }, + "time_base": "1/1000" + } + ] + }, + "John Wick Chapter 3 Parabellum (2019)/9473267709bb4a00a80561696ec3cca7.mkv": { + "format": { + "bit_rate": "10345808", + "duration": "7846.304000", + "filename": "John Wick Chapter 3 Parabellum (2019)/9473267709bb4a00a80561696ec3cca7.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "10147045123", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-05T14:13:27.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "8808973", + "DURATION-eng": "02:10:45.129000000", + "NUMBER_OF_BYTES-eng": "8638441755", + "NUMBER_OF_FRAMES-eng": "188095", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-05 14:13:27" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1536000", + "DURATION-eng": "02:10:46.304000000", + "NUMBER_OF_BYTES-eng": "1506490368", + "NUMBER_OF_FRAMES-eng": "245197", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-05 14:13:27", + "language": "eng", + "title": "DD+ 7.1 @1536 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7846.304000", + "duration_ts": 7846304, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24", + "DURATION-eng": "01:59:55.276000000", + "NUMBER_OF_BYTES-eng": "22211", + "NUMBER_OF_FRAMES-eng": "764", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-05 14:13:27", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7846.304000", + "duration_ts": 7846304, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31", + "DURATION-eng": "02:00:45.369000000", + "NUMBER_OF_BYTES-eng": "28519", + "NUMBER_OF_FRAMES-eng": "1141", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-05 14:13:27", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Inglorious Bastards (1978)/b81d818f5d6845e68be1eafd8977b7c9.mkv": { + "format": { + "bit_rate": "6295032", + "duration": "5967.542000", + "filename": "The Inglorious Bastards (1978)/b81d818f5d6845e68be1eafd8977b7c9.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4695733831", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-08-24T07:24:10.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 696, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Operation Avalanche (2016)/Operation.Avalanche.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1496607", + "duration": "5649.067000", + "filename": "Operation Avalanche (2016)/Operation.Avalanche.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1056804505", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2017-01-03T15:16:39.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "Operation.Avalanche.2016.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "6772100/282453", + "bit_rate": "1329812", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "282453/13544200", + "codec_type": "video", + "coded_height": 716, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "159:89", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5649.060000", + "duration_ts": 508415400, + "has_b_frames": 2, + "height": 716, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "135442", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "28461:28480", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-03T15:16:39.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159669", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5649.067000", + "duration_ts": 271155216, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "264800", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-03T15:16:39.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "98", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5649.067000", + "duration_ts": 508416030, + "height": 60, + "index": 2, + "nb_frames": "2696", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-03T15:16:39.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1279 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5649.067000", + "duration_ts": 5649067, + "index": 3, + "nb_frames": "10", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-03T15:16:39.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Fountain/The Fountain.mkv": { + "format": { + "bit_rate": "3338248", + "duration": "5794.475000", + "filename": "The Fountain/The Fountain.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "2417924811", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-11-29T23:00:34.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Main" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5794.475000", + "duration_ts": 5794475, + "height": 576, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English Subtitle" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5794.475000", + "duration_ts": 5794475, + "height": 576, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Closed Caption English Subtitle" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5794.475000", + "duration_ts": 5794475, + "height": 576, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa", + "title": "Spanish Subtitle" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5794.475000", + "duration_ts": 5794475, + "height": 576, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French Subtitle" + }, + "time_base": "1/1000", + "width": 720 + } + ] + }, + "The Twilight Saga Eclipse (2010)/The.Twilight.Saga.Eclipse.2010.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "685650", + "duration": "7104.596667", + "filename": "The Twilight Saga Eclipse (2010)/The.Twilight.Saga.Eclipse.2010.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "608908897", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-12-11T20:30:31.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64506", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7104.597333", + "duration_ts": 341020672, + "index": 0, + "max_bit_rate": "76168", + "nb_frames": "333028", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-11T20:30:31.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "617226", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7104.514083", + "duration_ts": 170508338, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "170338", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-11T20:30:36.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "I Am Not Your Negro (2016)/I.Am.Not.Your.Negro.2016.DOCU.720p.BluRay.x264-PSYCHD.mkv": { + "format": { + "bit_rate": "6665829", + "duration": "5630.422000", + "filename": "I Am Not Your Negro (2016)/I.Am.Not.Your.Negro.2016.DOCU.720p.BluRay.x264-PSYCHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4691429271", + "start_time": "0.000000", + "tags": { + "creation_time": "1970-01-01T00:00:00.000000Z", + "encoder": "no_variable_data" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5154212", + "BPS-eng": "5154212", + "DURATION": "01:33:50.417000000", + "DURATION-eng": "01:33:50.417000000", + "NUMBER_OF_BYTES": "3627545634", + "NUMBER_OF_BYTES-eng": "3627545634", + "NUMBER_OF_FRAMES": "134995", + "NUMBER_OF_FRAMES-eng": "134995", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:33:50.422000000", + "DURATION-eng": "01:33:50.422000000", + "NUMBER_OF_BYTES": "1062038224", + "NUMBER_OF_BYTES-eng": "1062038224", + "NUMBER_OF_FRAMES": "527852", + "NUMBER_OF_FRAMES-eng": "527852", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5630.422000", + "duration_ts": 5630422, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "86", + "BPS-eng": "86", + "DURATION": "01:28:20.045000000", + "DURATION-eng": "01:28:20.045000000", + "NUMBER_OF_BYTES": "57389", + "NUMBER_OF_BYTES-eng": "57389", + "NUMBER_OF_FRAMES": "1341", + "NUMBER_OF_FRAMES-eng": "1341", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5630.422000", + "duration_ts": 5630422, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "89", + "BPS-eng": "89", + "DURATION": "01:28:27.010000000", + "DURATION-eng": "01:28:27.010000000", + "NUMBER_OF_BYTES": "59610", + "NUMBER_OF_BYTES-eng": "59610", + "NUMBER_OF_FRAMES": "1419", + "NUMBER_OF_FRAMES-eng": "1419", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "no_variable_data", + "_STATISTICS_WRITING_APP-eng": "no_variable_data", + "_STATISTICS_WRITING_DATE_UTC": "1970-01-01 00:00:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "1970-01-01 00:00:00", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Oceans 8 (2018)/Oceans.8.2018.1080p.WEB-DL.H264.AC3-EVO.mkv": { + "format": { + "bit_rate": "4967126", + "duration": "6607.808000", + "filename": "Oceans 8 (2018)/Oceans.8.2018.1080p.WEB-DL.H264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4102727675", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-20T23:51:20.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:50:07.808000000", + "DURATION-eng": "01:50:07.808000000", + "NUMBER_OF_BYTES": "317174784", + "NUMBER_OF_BYTES-eng": "317174784", + "NUMBER_OF_FRAMES": "206494", + "NUMBER_OF_FRAMES-eng": "206494", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-08-20 23:51:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-20 23:51:20", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4581348", + "BPS-eng": "4581348", + "DURATION": "01:50:07.726000000", + "DURATION-eng": "01:50:07.726000000", + "NUMBER_OF_BYTES": "3784037351", + "NUMBER_OF_BYTES-eng": "3784037351", + "NUMBER_OF_FRAMES": "158428", + "NUMBER_OF_FRAMES-eng": "158428", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v14.0.0 ('Flow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-08-20 23:51:20", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-20 23:51:20", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Get Shorty/Get Shorty KLAXXON.avi": { + "format": { + "bit_rate": "1582484", + "duration": "5824.800000", + "filename": "Get Shorty/Get Shorty KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1152206848", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1124827", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 320, + "coded_width": 592, + "display_aspect_ratio": "37:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5824.800000", + "duration_ts": 145620, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "145620", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "326188800", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "BBC Why Democracy Taxi To The Dark Side/BBC.Why.Democracy.Taxi.To.The.Dark.Side.WS.PDTV.CHROME307.avi": { + "format": { + "bit_rate": "1240863", + "duration": "4732.368000", + "filename": "BBC Why Democracy Taxi To The Dark Side/BBC.Why.Democracy.Taxi.To.The.Dark.Side.WS.PDTV.CHROME307.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734027776", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1119734", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4732.360000", + "duration_ts": 118309, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "118309", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "108216", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4732.368000", + "duration_ts": 197182, + "index": 1, + "nb_frames": "197182", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Evil Dead II (1987)/e68015759ec048e39e27e4eddb417b58.mkv": { + "format": { + "bit_rate": "4123821", + "duration": "5067.584000", + "filename": "Evil Dead II (1987)/e68015759ec048e39e27e4eddb417b58.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2612226238", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/24", + "codec_type": "video", + "coded_height": 1056, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 0, + "height": 1036, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:24:26.999000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:24:27.584000000" + }, + "time_base": "1/1000" + } + ] + }, + "Rocket Science (2007)/Rocket.Science[2007]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1009525", + "duration": "5831.600000", + "filename": "Rocket Science (2007)/Rocket.Science[2007]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735893504", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "871818", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 332, + "coded_width": 608, + "display_aspect_ratio": "152:83", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5831.600000", + "duration_ts": 145790, + "has_b_frames": 1, + "height": 332, + "index": 0, + "level": 5, + "nb_frames": "145790", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "242983", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Hangover Part II (2011)/f-hangover2.720.mkv": { + "format": { + "bit_rate": "6140400", + "duration": "6109.739000", + "filename": "The Hangover Part II (2011)/f-hangover2.720.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4689530769", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-16T04:10:24.000000Z", + "encoder": "libebml v1.2.2 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Princess Bride (1987)/c4356a7c57234404a7f5a100e4a04bae.mkv": { + "format": { + "bit_rate": "4125488", + "duration": "5918.656000", + "filename": "The Princess Bride (1987)/c4356a7c57234404a7f5a100e4a04bae.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3052168075", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1056, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 0, + "height": 1040, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:38:37.911000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:38:38.656000000" + }, + "time_base": "1/1000" + } + ] + }, + "The Secret Life Of Pets 2 (2019)/755b868cede0485f88095f46591918eb.mkv": { + "format": { + "bit_rate": "5523238", + "duration": "5164.288000", + "filename": "The Secret Life Of Pets 2 (2019)/755b868cede0485f88095f46591918eb.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "3565449333", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-13T04:49:02.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2", + "title": "The.Secret.Life.of.Pets.2.2019.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1036, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1036, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5137330", + "DURATION-eng": "01:26:04.243000000", + "NUMBER_OF_BYTES-eng": "3316303141", + "NUMBER_OF_FRAMES-eng": "123818", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-13 04:49:02", + "language": "eng", + "title": "The.Secret.Life.of.Pets.2.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:26:04.288000000", + "NUMBER_OF_BYTES-eng": "247885824", + "NUMBER_OF_FRAMES-eng": "161384", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-13 04:49:02", + "language": "eng", + "title": "The.Secret.Life.of.Pets.2.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5164.288000", + "duration_ts": 464785920, + "has_b_frames": 0, + "height": 600, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5164.288000", + "duration_ts": 464785920, + "has_b_frames": 0, + "height": 176, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5164.288000", + "duration_ts": 464785920, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5164.288000", + "duration_ts": 464785920, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "Unforgiven (1992)/Unforgiven.avi": { + "format": { + "bit_rate": "782058", + "duration": "7520.280000", + "filename": "Unforgiven (1992)/Unforgiven.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735162368", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "642904", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7520.280000", + "duration_ts": 188007, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "188007", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126248", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7520.280000", + "duration_ts": 313345, + "index": 1, + "nb_frames": "313345", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Adventures of Buckaroo Banzai Across the 8th Dimension (1984)/The_Adventures_of_Buckaroo_Banzai_Across_the_Eighth_Dimension.avi": { + "format": { + "bit_rate": "1998060", + "duration": "6267.976310", + "filename": "The Adventures of Buckaroo Banzai Across the 8th Dimension (1984)/The_Adventures_of_Buckaroo_Banzai_Across_the_Eighth_Dimension.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1565474816", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1542993", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 864, + "display_aspect_ratio": "54:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6267.976310", + "duration_ts": 150281, + "has_b_frames": 0, + "height": 368, + "index": 0, + "level": 0, + "nb_frames": "150281", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 864 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "351006673", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Riddick Unrated DC (2013)/Riddick.Unrated.DC.2013.1080p.WEB-DL.H264-PublicHD.mkv": { + "format": { + "bit_rate": "4345943", + "duration": "7607.840000", + "filename": "Riddick Unrated DC (2013)/Riddick.Unrated.DC.2013.1080p.WEB-DL.H264-PublicHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4132905434", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-12-17T12:28:38.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Doom/Doom. DVDRip.RonQ.avi.avi": { + "format": { + "bit_rate": "973841", + "duration": "6029.720000", + "filename": "Doom/Doom. DVDRip.RonQ.avi.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733999104", + "start_time": "0.000000", + "tags": { + "IAS1": "Unknown language", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "826605", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6029.720000", + "duration_ts": 150743, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "150743", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "134328", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6029.712000", + "duration_ts": 251238, + "index": 1, + "nb_frames": "251238", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Extinction (2018)/47fefb7bdbd24897bd421755d419eb7f.mkv": { + "format": { + "bit_rate": "3686315", + "duration": "5720.480000", + "filename": "Extinction (2018)/47fefb7bdbd24897bd421755d419eb7f.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2635936475", + "start_time": "0.078000", + "tags": { + "creation_time": "2018-07-27T07:22:31.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS-eng": "3236739", + "DURATION-eng": "01:35:20.090000000", + "NUMBER_OF_BYTES-eng": "2314305202", + "NUMBER_OF_FRAMES-eng": "137145", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-27 07:22:31" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:35:20.480000000", + "NUMBER_OF_BYTES-eng": "320346880", + "NUMBER_OF_FRAMES-eng": "178765", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-27 07:22:31", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Office Christmas Party (2016)/office.christmas.party.2016.1080p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4956213", + "duration": "6323.072000", + "filename": "Office Christmas Party (2016)/office.christmas.party.2016.1080p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3917311509", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-09T13:57:24.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:45:23.072000000", + "DURATION-eng": "01:45:23.072000000", + "NUMBER_OF_BYTES": "303507456", + "NUMBER_OF_BYTES-eng": "303507456", + "NUMBER_OF_FRAMES": "197596", + "NUMBER_OF_FRAMES-eng": "197596", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-09 11:29:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-09 11:29:02", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1912, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "478:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4570407", + "BPS-eng": "4570407", + "DURATION": "01:45:23.000000000", + "DURATION-eng": "01:45:23.000000000", + "NUMBER_OF_BYTES": "3612335955", + "NUMBER_OF_BYTES-eng": "3612335955", + "NUMBER_OF_FRAMES": "151753", + "NUMBER_OF_FRAMES-eng": "151753", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-09 11:29:02", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-09 11:29:02", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1912 + } + ] + }, + "Men In Black 3 (2012)/Men.in.Black.3.2012.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2165633", + "duration": "6350.463333", + "filename": "Men In Black 3 (2012)/Men.in.Black.3.2012.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1719096624", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-09-07T16:28:56.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2069520", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6350.385708", + "duration_ts": 609637028, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "152257", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-09-07T16:28:56.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6350.464000", + "duration_ts": 304822272, + "index": 1, + "max_bit_rate": "99616", + "nb_frames": "297678", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-09-07T16:29:13.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Spider-Man Homecoming (2017)/ac1d7400d78546969d7c2be6c442fdf4.mkv": { + "format": { + "bit_rate": "5019060", + "duration": "8008.000000", + "filename": "Spider-Man Homecoming (2017)/ac1d7400d78546969d7c2be6c442fdf4.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "5024079497", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.5 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "height": 720, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 2419, + "start_time": "2.419000", + "tags": { + "language": "eng", + "title": "English SDH SUP" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8008.000000", + "duration_ts": 8008000, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English SUP" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8008.000000", + "duration_ts": 8008000, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French SUP" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8008.000000", + "duration_ts": 8008000, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa", + "title": "Spanish SUP" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 2420, + "start_time": "2.420000", + "tags": { + "language": "eng", + "title": "English SDH SRT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8008.000000", + "duration_ts": 8008000, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English SRT" + }, + "time_base": "1/1000" + } + ] + }, + "300 (2006)/300.2006.720p.BluRay.x264-CtrlHD.mkv": { + "format": { + "bit_rate": "5375454", + "duration": "6990.176000", + "filename": "300 (2006)/300.2006.720p.BluRay.x264-CtrlHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 24, + "probe_score": 100, + "size": "4696922021", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-04T20:43:19.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "1280x534 @ 4730 Kbps" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "AC3 5.1 @ 640 Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "scr" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "scc" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.176000", + "duration_ts": 629115840, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Bold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.176000", + "duration_ts": 629115840, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Semibold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.176000", + "duration_ts": 629115840, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-SemiboldIt.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Che Part One/Che Part 1.mp4": { + "format": { + "bit_rate": "2245715", + "duration": "8043.775000", + "filename": "Che Part One/Che Part 1.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2258004230", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2009-06-28T17:39:39.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "1944006", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8043.715187", + "duration_ts": 538068240, + "has_b_frames": 1, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "192856", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2790, + "start_time": "0.041708", + "tags": { + "creation_time": "2009-06-27T13:48:39.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "297994", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8043.776000", + "duration_ts": 386101248, + "index": 1, + "max_bit_rate": "406992", + "nb_frames": "377052", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2009-06-28T17:42:03.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Cloudy With A Chance Of Meatballs (2009)/Cloudy with a Chance of Meatballs 2009 1080p x264.mkv": { + "format": { + "bit_rate": "3195880", + "duration": "5393.408000", + "filename": "Cloudy With A Chance Of Meatballs (2009)/Cloudy with a Chance of Meatballs 2009 1080p x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2154586075", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-02-13T10:09:23.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5393.408000", + "duration_ts": 5393408, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5393.408000", + "duration_ts": 5393408, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Rosencrantz and Guildenstern are Dead (1990)/Rosencrantz and Guildenstern are Dead (1990).avi": { + "format": { + "bit_rate": "867105", + "duration": "6772.360000", + "filename": "Rosencrantz and Guildenstern are Dead (1990)/Rosencrantz and Guildenstern are Dead (1990).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734044160", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "731138", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 416, + "coded_width": 576, + "display_aspect_ratio": "18:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6772.360000", + "duration_ts": 169309, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": -99, + "nb_frames": "169309", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "123104", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6772.344000", + "duration_ts": 282181, + "index": 1, + "nb_frames": "282181", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Departed/The.Departed 2007 dvdrip[eng],waubs.avi": { + "format": { + "bit_rate": "740855", + "duration": "9076.785118", + "filename": "The Departed/The.Departed 2007 dvdrip[eng],waubs.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "840572928", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "635548", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 240, + "coded_width": 588, + "display_aspect_ratio": "49:20", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9076.785118", + "duration_ts": 217625, + "has_b_frames": 1, + "height": 240, + "index": 0, + "level": 5, + "nb_frames": "217625", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 588 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "378199", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Scorpion King/The Scorpion King.m4v": { + "format": { + "bit_rate": "1981271", + "duration": "5490.080000", + "filename": "The Scorpion King/The Scorpion King.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1359667535", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T20:30:38.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1658648049/69182212", + "bit_rate": "1363000", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "34591106/1658648049", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "867:368", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5490.037189", + "duration_ts": 494103347, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "131624", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "289:240", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T20:30:38.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165024", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5490.069333", + "duration_ts": 263523328, + "index": 1, + "max_bit_rate": "255824", + "nb_frames": "257347", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T20:30:38.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "5490.080000", + "duration_ts": 263523840, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "171565", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T20:30:38.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Arrival (2016)/Arrival.2016.720p.BluRay.x264-SPARKS.mkv": { + "format": { + "bit_rate": "6723308", + "duration": "6982.976000", + "filename": "Arrival (2016)/Arrival.2016.720p.BluRay.x264-SPARKS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5868587694", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-31T23:36:51.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5212028", + "BPS-eng": "5212028", + "DURATION": "01:56:22.946000000", + "DURATION-eng": "01:56:22.946000000", + "NUMBER_OF_BYTES": "4549414101", + "NUMBER_OF_BYTES-eng": "4549414101", + "NUMBER_OF_FRAMES": "167423", + "NUMBER_OF_FRAMES-eng": "167423", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-31 23:36:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-31 23:36:51", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:56:22.976000000", + "DURATION-eng": "01:56:22.976000000", + "NUMBER_OF_BYTES": "1317163848", + "NUMBER_OF_BYTES-eng": "1317163848", + "NUMBER_OF_FRAMES": "654654", + "NUMBER_OF_FRAMES-eng": "654654", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-31 23:36:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-31 23:36:51", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Last Flag Flying (2017)/Last.Flag.Flying.2017.1080p.WEB-DL.DD5.1.H264-FGT.mkv": { + "format": { + "bit_rate": "5654619", + "duration": "7505.952000", + "filename": "Last Flag Flying (2017)/Last.Flag.Flying.2017.1080p.WEB-DL.DD5.1.H264-FGT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "5305413244", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-01-16T11:00:35.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Last.Flag.Flying.2017.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1068, + "coded_width": 1908, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "159:89", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1068, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5268732", + "BPS-eng": "5268732", + "DURATION": "02:05:05.915000000", + "DURATION-eng": "02:05:05.915000000", + "NUMBER_OF_BYTES": "4943332099", + "NUMBER_OF_BYTES-eng": "4943332099", + "NUMBER_OF_FRAMES": "179962", + "NUMBER_OF_FRAMES-eng": "179962", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-01-16 11:00:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-01-16 11:00:35", + "language": "eng", + "title": "Last.Flag.Flying.2017.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1908 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "02:05:05.952000000", + "DURATION-eng": "02:05:05.952000000", + "NUMBER_OF_BYTES": "360285696", + "NUMBER_OF_BYTES-eng": "360285696", + "NUMBER_OF_FRAMES": "234561", + "NUMBER_OF_FRAMES-eng": "234561", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-01-16 11:00:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-01-16 11:00:35", + "language": "eng", + "title": "Last.Flag.Flying.2017.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7505.952000", + "duration_ts": 675535680, + "has_b_frames": 0, + "height": 176, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7505.952000", + "duration_ts": 675535680, + "has_b_frames": 0, + "height": 120, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7505.952000", + "duration_ts": 675535680, + "has_b_frames": 0, + "height": 882, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7505.952000", + "duration_ts": 675535680, + "has_b_frames": 0, + "height": 600, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Ghost In The Shell Stand Alone Complex Individual Eleven (2006)/Ghost.In.The.Shell.Stand.Alone.Complex.Individual.Eleven.2006.720p.BluRay.x264-CiNEFiLE.mkv": { + "format": { + "bit_rate": "3099087", + "duration": "9693.184000", + "filename": "Ghost In The Shell Stand Alone Complex Individual Eleven (2006)/Ghost.In.The.Shell.Stand.Alone.Complex.Individual.Eleven.2006.720p.BluRay.x264-CiNEFiLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3755002846", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4271746", + "BPS-eng": "4271746", + "DURATION": "02:41:33.184000000", + "DURATION-eng": "02:41:33.184000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "5175853697", + "NUMBER_OF_BYTES-eng": "5175853697", + "NUMBER_OF_FRAMES": "232404", + "NUMBER_OF_FRAMES-eng": "232404", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-20 19:14:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-20 19:14:33", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "768000", + "BPS-eng": "768000", + "DURATION": "02:41:33.183000000", + "DURATION-eng": "02:41:33.184000000", + "NUMBER_OF_BYTES": "930545732", + "NUMBER_OF_BYTES-eng": "930545732", + "NUMBER_OF_FRAMES": "908736", + "NUMBER_OF_FRAMES-eng": "908736", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-20 19:14:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-20 19:14:33", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "768000", + "BPS-eng": "768000", + "DURATION": "02:41:33.183000000", + "DURATION-eng": "02:41:33.184000000", + "NUMBER_OF_BYTES": "930545732", + "NUMBER_OF_BYTES-eng": "930545732", + "NUMBER_OF_FRAMES": "908736", + "NUMBER_OF_FRAMES-eng": "908736", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-20 19:14:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-20 19:14:33", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9693.184000", + "duration_ts": 9693184, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "92", + "BPS-eng": "92", + "DURATION": "02:37:41.578000000", + "DURATION-eng": "02:37:39.826000000", + "NUMBER_OF_BYTES": "109061", + "NUMBER_OF_BYTES-eng": "109061", + "NUMBER_OF_FRAMES": "2345", + "NUMBER_OF_FRAMES-eng": "2345", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v12.0.0 ('Trust / Lust') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-06-20 19:14:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-06-20 19:14:33", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "The Lion King (1994)/The.Lion.King.1994.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "12860914", + "duration": "5310.508000", + "filename": "The Lion King (1994)/The.Lion.King.1994.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8537248991", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-10-11T12:16:12.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "10724973", + "BPS-eng": "10724973", + "DURATION": "01:28:23.549000000", + "DURATION-eng": "01:28:23.549000000", + "NUMBER_OF_BYTES": "7110053003", + "NUMBER_OF_BYTES-eng": "7110053003", + "NUMBER_OF_FRAMES": "127158", + "NUMBER_OF_FRAMES-eng": "127158", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 12:16:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 12:16:12", + "language": "eng", + "title": "@10700 Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:28:23.552000000", + "DURATION-eng": "01:28:23.552000000", + "NUMBER_OF_BYTES": "1000382624", + "NUMBER_OF_BYTES-eng": "1000382624", + "NUMBER_OF_FRAMES": "497208", + "NUMBER_OF_FRAMES-eng": "497208", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 12:16:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 12:16:12", + "language": "eng", + "title": "DTS@1509Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 12, + "start_time": "0.012000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:28:30.496000000", + "DURATION-eng": "01:28:30.496000000", + "NUMBER_OF_BYTES": "424839680", + "NUMBER_OF_BYTES-eng": "424839680", + "NUMBER_OF_FRAMES": "165953", + "NUMBER_OF_FRAMES-eng": "165953", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 12:16:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 12:16:12", + "language": "tur", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5310.508000", + "duration_ts": 5310508, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:22:43.088000000", + "DURATION-eng": "01:22:43.088000000", + "NUMBER_OF_BYTES": "37097", + "NUMBER_OF_BYTES-eng": "37097", + "NUMBER_OF_FRAMES": "1180", + "NUMBER_OF_FRAMES-eng": "1180", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 12:16:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 12:16:12", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5310.508000", + "duration_ts": 5310508, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "56", + "BPS-eng": "56", + "DURATION": "01:23:08.131000000", + "DURATION-eng": "01:23:08.131000000", + "NUMBER_OF_BYTES": "35459", + "NUMBER_OF_BYTES-eng": "35459", + "NUMBER_OF_FRAMES": "1177", + "NUMBER_OF_FRAMES-eng": "1177", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2016-10-11 12:16:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-10-11 12:16:12", + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Anna (2019)/dc59efdb14304e3d97532da20dd8ac7b.mkv": { + "format": { + "bit_rate": "16975141", + "duration": "7139.616000", + "filename": "Anna (2019)/dc59efdb14304e3d97532da20dd8ac7b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "15149499230", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-18T08:58:16.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15437054", + "DURATION-eng": "01:58:59.591000000", + "NUMBER_OF_BYTES-eng": "13776782111", + "NUMBER_OF_FRAMES-eng": "171179", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-18 08:58:16" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1536000", + "DURATION-eng": "01:58:59.616000000", + "NUMBER_OF_BYTES-eng": "1370806272", + "NUMBER_OF_FRAMES-eng": "223113", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-18 08:58:16", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7139.616000", + "duration_ts": 7139616, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "01:52:16.771000000", + "NUMBER_OF_BYTES-eng": "39908", + "NUMBER_OF_FRAMES-eng": "1196", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-18 08:58:16", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Ratatouille (2007)/Ratatouille[2007]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "883168", + "duration": "6667.125459", + "filename": "Ratatouille (2007)/Ratatouille[2007]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736024576", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "761863", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 274, + "coded_width": 664, + "display_aspect_ratio": "332:137", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6667.125459", + "duration_ts": 159851, + "has_b_frames": 1, + "height": 274, + "index": 0, + "level": 5, + "nb_frames": "159851", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 664 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "277785", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Eric Clapton - Unplugged/Eric Clapton - Unplugged.m4v": { + "format": { + "bit_rate": "2552600", + "duration": "3881.744533", + "filename": "Eric Clapton - Unplugged/Eric Clapton - Unplugged.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1238567724", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T05:40:31.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "218126250/7278271", + "bit_rate": "1960885", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "7278271/436252500", + "codec_type": "video", + "coded_height": 480, + "coded_width": 700, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "175:132", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3881.744533", + "duration_ts": 349357008, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "116334", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "10:11", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:40:31.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 700 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "3881.696000", + "duration_ts": 186321408, + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "121303", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:40:31.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "138858", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3881.706667", + "duration_ts": 186321920, + "index": 2, + "max_bit_rate": "209600", + "nb_frames": "181955", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:40:31.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Titus/Titus - Anthony Hopkins - DivxRipBy RUBrTOE.avi": { + "format": { + "bit_rate": "792170", + "duration": "9326.160000", + "filename": "Titus/Titus - Anthony Hopkins - DivxRipBy RUBrTOE.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "923488300", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "702513", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 720, + "display_aspect_ratio": "5:2", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9326.160000", + "duration_ts": 233154, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "233154", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Video " + }, + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "80000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "93261599", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio" + }, + "time_base": "1/10000" + } + ] + }, + "X Men The Last Stand (2006)/948f08a4ba784626ac13de77b77559dd.mkv": { + "format": { + "bit_rate": "6574160", + "duration": "6245.248000", + "filename": "X Men The Last Stand (2006)/948f08a4ba784626ac13de77b77559dd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "5132157981", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-25T12:26:17Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5739701", + "DURATION-eng": "01:44:05.239000000", + "NUMBER_OF_BYTES-eng": "4480726283", + "NUMBER_OF_FRAMES-eng": "149736", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:48:40" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:44:05.216000000", + "NUMBER_OF_BYTES-eng": "349732096", + "NUMBER_OF_FRAMES-eng": "195163", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:48:40", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "01:44:05.248000000", + "NUMBER_OF_BYTES-eng": "149885952", + "NUMBER_OF_FRAMES-eng": "195164", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:48:40", + "language": "eng", + "title": "Stereo commentary 1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "01:44:05.248000000", + "NUMBER_OF_BYTES-eng": "149885952", + "NUMBER_OF_FRAMES-eng": "195164", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:48:40", + "language": "eng", + "title": "Stereo commentary 2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6245.248000", + "duration_ts": 6245248, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "50", + "DURATION-eng": "01:42:52.750000000", + "NUMBER_OF_BYTES-eng": "38936", + "NUMBER_OF_FRAMES-eng": "1012", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:48:40", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Best In Show/BEST_IN_SHOW.avi": { + "format": { + "bit_rate": "1085771", + "duration": "5409.487417", + "filename": "Best In Show/BEST_IN_SHOW.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734183274", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "944908", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5409.487417", + "duration_ts": 129698, + "has_b_frames": 0, + "height": 368, + "index": 0, + "level": 3, + "nb_frames": "129698", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "225398", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Harry Potter And The Sorcerer's Stone (2001)/Harry Potter and the Sorcerer's Stone (2001) Ult Ext Ed 720p Dual Audio BluRay - KartiKing - DMMovies.mkv": { + "format": { + "bit_rate": "2260550", + "duration": "9140.200000", + "filename": "Harry Potter And The Sorcerer's Stone (2001)/Harry Potter and the Sorcerer's Stone (2001) Ult Ext Ed 720p Dual Audio BluRay - KartiKing - DMMovies.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2582734976", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101", + "title": "Harry Potter and the Sorcerer's Stone (2001) Ultimate Extended Edition - KartiKing - Movies.DigitalMaza.Org" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "999758", + "BPS-eng": "999758", + "DURATION": "02:32:20.200000000", + "DURATION-eng": "02:32:20.200000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "1142248905", + "NUMBER_OF_BYTES-eng": "1142248905", + "NUMBER_OF_FRAMES": "228505", + "NUMBER_OF_FRAMES-eng": "228505", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:37:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:37:06", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "02:32:20.192000000", + "DURATION-eng": "02:32:20.192000000", + "NUMBER_OF_BYTES": "255925376", + "NUMBER_OF_BYTES-eng": "255925376", + "NUMBER_OF_FRAMES": "285631", + "NUMBER_OF_FRAMES-eng": "285631", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:37:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:37:06", + "language": "hin", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "127999", + "BPS-eng": "127999", + "DURATION": "02:32:19.721000000", + "DURATION-eng": "02:32:19.723000000", + "NUMBER_OF_BYTES": "146235560", + "NUMBER_OF_BYTES-eng": "146235560", + "NUMBER_OF_FRAMES": "262410", + "NUMBER_OF_FRAMES-eng": "262410", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:37:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:37:06", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9140.200000", + "duration_ts": 9140200, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "00:00:20.000000000", + "DURATION-eng": "00:00:13.000000000", + "NUMBER_OF_BYTES": "51", + "NUMBER_OF_BYTES-eng": "51", + "NUMBER_OF_FRAMES": "2", + "NUMBER_OF_FRAMES-eng": "2", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 09:37:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 09:37:06", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + } + ] + }, + "The Curious Case of Benjamin Button (2008)/The.Curious.Case.of.Benjamin.Button.2008.1080p.BluRay.x264.anoXmous_.mp4": { + "format": { + "bit_rate": "2322292", + "duration": "9963.201667", + "filename": "The Curious Case of Benjamin Button (2008)/The.Curious.Case.of.Benjamin.Button.2008.1080p.BluRay.x264.anoXmous_.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2892183934", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2013-01-22T17:08:48.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1811572", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9963.201667", + "duration_ts": 239116840, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "238878", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-22T15:37:52.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "380928", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9963.050667", + "duration_ts": 478226432, + "index": 1, + "max_bit_rate": "440872", + "nb_frames": "467018", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-22T14:31:22.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124210", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9963.050667", + "duration_ts": 478226432, + "index": 2, + "max_bit_rate": "143240", + "nb_frames": "467018", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-22T14:51:10.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Finding Dory (2016)/07d14b083a214e3a965ac99cfeda13ed.mkv": { + "format": { + "bit_rate": "5166678", + "duration": "5823.730000", + "filename": "Finding Dory (2016)/07d14b083a214e3a965ac99cfeda13ed.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3761167219", + "start_time": "0.083000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "2781/116", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "58/2781", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2781/116", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "DURATION": "01:37:03.692000000" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "DURATION": "01:37:03.730000000" + }, + "time_base": "1/1000" + } + ] + }, + "There Will Be Blood (2007)/There Will Be Blood.mp4": { + "format": { + "bit_rate": "2079793", + "duration": "9505.813333", + "filename": "There Will Be Blood (2007)/There Will Be Blood.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2471266083", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2010-07-31T04:30:46.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1737968", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9505.662833", + "duration_ts": 228135908, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "227908", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2010-07-31T04:30:46.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (internal rev. 5)", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "337712", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9505.813333", + "duration_ts": 456279040, + "index": 1, + "max_bit_rate": "444704", + "nb_frames": "445585", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-07-31T04:44:14.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Ex Machina (2015)/45f7197a6d1548c1936aa3948672e3e2.mkv": { + "format": { + "bit_rate": "5208056", + "duration": "6480.916000", + "filename": "Ex Machina (2015)/45f7197a6d1548c1936aa3948672e3e2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4219122057", + "start_time": "0.000000", + "tags": { + "Writing frontend": "StaxRip v1.9.0.0", + "creation_time": "2018-12-08T22:22:51.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4829097", + "DURATION-eng": "01:48:00.850000000", + "NUMBER_OF_BYTES-eng": "3912081757", + "NUMBER_OF_FRAMES-eng": "155385", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-08 22:22:51" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "367468", + "DURATION-eng": "01:48:00.896000000", + "NUMBER_OF_BYTES-eng": "297690749", + "NUMBER_OF_FRAMES-eng": "303792", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-08 22:22:51", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6480.916000", + "duration_ts": 6480916, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32516", + "DURATION-eng": "01:38:41.541000000", + "NUMBER_OF_BYTES-eng": "24068740", + "NUMBER_OF_FRAMES-eng": "2497", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-08 22:22:51", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Rules Of Engagement (2000)/Rules Of Engagement-AC3.5,1-DVDRip[Eng]2000.avi": { + "format": { + "bit_rate": "1729281", + "duration": "7327.760000", + "filename": "Rules Of Engagement (2000)/Rules Of Engagement-AC3.5,1-DVDRip[Eng]2000.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1583970304", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1274406", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 224, + "coded_width": 512, + "display_aspect_ratio": "16:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7327.760000", + "duration_ts": 183194, + "has_b_frames": 0, + "height": 224, + "index": 0, + "level": 5, + "nb_frames": "183194", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "410326784", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Abraham Lincoln Vampire Hunter (2012)/alli-alvh-xvid-cd2.avi": { + "format": { + "bit_rate": "1846648", + "duration": "3177.299125", + "filename": "Abraham Lincoln Vampire Hunter (2012)/alli-alvh-xvid-cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733419520", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1396791", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3177.299125", + "duration_ts": 76179, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "76179", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "177200380", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Spider-Man 3 (2007)/Spiderman 3 [2007]DvDrip[Eng]-NikonXp.avi": { + "format": { + "bit_rate": "1194226", + "duration": "8348.720000", + "filename": "Spider-Man 3 (2007)/Spiderman 3 [2007]DvDrip[Eng]-NikonXp.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1246283250", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "799330", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 354, + "coded_width": 720, + "display_aspect_ratio": "1280:531", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8348.720000", + "duration_ts": 208718, + "has_b_frames": 0, + "height": 354, + "index": 0, + "level": 3, + "nb_frames": "208718", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "260897", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Clerks II (2006)/Clerks 2.avi": { + "format": { + "bit_rate": "1003679", + "duration": "5852.977978", + "filename": "Clerks II (2006)/Clerks 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734314496", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "866372", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 312, + "coded_width": 572, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5852.977978", + "duration_ts": 140331, + "has_b_frames": 1, + "height": 312, + "index": 0, + "level": 5, + "nb_frames": "140331", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 572 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "243874", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Reds Dream (1987)/reds.dream.1987.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4642960", + "duration": "254.272000", + "filename": "Reds Dream (1987)/reds.dream.1987.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "147571871", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T13:35:11.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Hellboy (2019)/607e0efbe498458d938c1c1a8900fd76.mkv": { + "format": { + "bit_rate": "8134673", + "duration": "7260.384000", + "filename": "Hellboy (2019)/607e0efbe498458d938c1c1a8900fd76.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "7382606699", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-07-09T08:20:09.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7492406", + "DURATION-eng": "02:01:00.337000000", + "NUMBER_OF_BYTES-eng": "6799674426", + "NUMBER_OF_FRAMES-eng": "174074", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-09 08:20:09", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:01:00.384000000", + "NUMBER_OF_BYTES-eng": "580830720", + "NUMBER_OF_FRAMES-eng": "226887", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-09 08:20:09", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7260.384000", + "duration_ts": 7260384, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "53", + "DURATION-eng": "02:00:23.042000000", + "NUMBER_OF_BYTES-eng": "47871", + "NUMBER_OF_FRAMES-eng": "1528", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-09 08:20:09", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7260.384000", + "duration_ts": 7260384, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "02:00:25.392000000", + "NUMBER_OF_BYTES-eng": "54188", + "NUMBER_OF_FRAMES-eng": "1899", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-09 08:20:09", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7260.384000", + "duration_ts": 653434560, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7260.384000", + "duration_ts": 653434560, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7260.384000", + "duration_ts": 653434560, + "has_b_frames": 0, + "height": 600, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7260.384000", + "duration_ts": 653434560, + "has_b_frames": 0, + "height": 176, + "index": 7, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + } + ] + }, + "The Girl With All The Gifts (2016)/The.Girl.with.All.the.Gifts.2016.720p.HDRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1530424", + "duration": "6369.239000", + "filename": "The Girl With All The Gifts (2016)/The.Girl.with.All.the.Gifts.2016.720p.HDRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1218455033", + "start_time": "0.000000", + "tags": { + "comment": "The.Girl.With.All.The.Gifts.2016.1080p.HDRip.x264.AAC2.0-SHITBOX", + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2017-01-06T14:44:22.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "The.Girl.With.All.The.Gifts.2016.1080p.HDRip.x264.AAC2.0-SHITBOX" + } + }, + "streams": [ + { + "avg_frame_rate": "1148481031/45940386", + "bit_rate": "1300250", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "22970193/1148481031", + "codec_type": "video", + "coded_height": 638, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "480:239", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6369.239000", + "duration_ts": 573231510, + "has_b_frames": 2, + "height": 638, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "159227", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "957:956", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-06T14:44:22.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6369.045333", + "duration_ts": 305714176, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "298549", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-01-06T14:44:22.000000Z", + "handler_name": "Stereo", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Jack-Jack Attack (2005)/jack-jack.attack.2005.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4616639", + "duration": "284.288000", + "filename": "Jack-Jack Attack (2005)/jack-jack.attack.2005.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "164056889", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T12:06:18.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Shadow of the Vampire/Shadow.Of.The.Vampire.DVDrip.DivX-DOMiNiON.avi": { + "format": { + "bit_rate": "980968", + "duration": "5532.157157", + "filename": "Shadow of the Vampire/Shadow.Of.The.Vampire.DVDrip.DivX-DOMiNiON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "678359040", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "843855", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5532.157157", + "duration_ts": 132639, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "132639", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "88310592", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/15963" + } + ] + }, + "Burke And Hare (2010)/Burke.and.Hare.2010.720p.BluRay.X264-Aml.mkv": { + "format": { + "bit_rate": "6842224", + "duration": "5487.042000", + "filename": "Burke And Hare (2010)/Burke.and.Hare.2010.720p.BluRay.X264-Aml.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4692946558", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-01-14T18:28:00.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5330664", + "BPS-eng": "5330664", + "DURATION": "01:31:27.042000000", + "DURATION-eng": "01:31:27.042000000", + "NUMBER_OF_BYTES": "3656197162", + "NUMBER_OF_BYTES-eng": "3656197162", + "NUMBER_OF_FRAMES": "131689", + "NUMBER_OF_FRAMES-eng": "131689", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-14 18:28:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-14 18:28:00", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:31:27.008000000", + "DURATION-eng": "01:31:27.008000000", + "NUMBER_OF_BYTES": "1034986884", + "NUMBER_OF_BYTES-eng": "1034986884", + "NUMBER_OF_FRAMES": "514407", + "NUMBER_OF_FRAMES-eng": "514407", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-14 18:28:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-14 18:28:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5487.042000", + "duration_ts": 5487042, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:26:58.874000000", + "DURATION-eng": "01:26:58.874000000", + "NUMBER_OF_BYTES": "43438", + "NUMBER_OF_BYTES-eng": "43438", + "NUMBER_OF_FRAMES": "1216", + "NUMBER_OF_FRAMES-eng": "1216", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-14 18:28:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-14 18:28:00", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5487.042000", + "duration_ts": 5487042, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "01:25:22.249000000", + "DURATION-eng": "01:25:22.249000000", + "NUMBER_OF_BYTES": "35575", + "NUMBER_OF_BYTES-eng": "35575", + "NUMBER_OF_FRAMES": "795", + "NUMBER_OF_FRAMES-eng": "795", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.8.0 ('Wind at my back') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-01-14 18:28:00", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-01-14 18:28:00", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Sherlock Holmes - A Game Of Shadows (2011)/Sherlock Holmes - A Game of Shadows (2011).mp4": { + "format": { + "bit_rate": "2229025", + "duration": "7724.895000", + "filename": "Sherlock Holmes - A Game Of Shadows (2011)/Sherlock Holmes - A Game of Shadows (2011).mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2152373944", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-12-13T03:08:41.000000Z", + "encoder": "My MP4Box GUI 0.6.0.6 ", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1714320", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7724.675292", + "duration_ts": 185392207, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "185207", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-12-13T03:08:41.000000Z", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7724.896000", + "duration_ts": 370795008, + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "241403", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-12-13T03:09:58.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "256000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7724.640000", + "duration_ts": 370782720, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "241395", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-12-13T03:10:26.000000Z", + "language": "hin" + }, + "time_base": "1/48000" + } + ] + }, + "The Man Who Would Be King (1975)/The.Man.Who.Would.Be.King.1975.BDRip.H264.AAC.Gopo.mp4": { + "format": { + "bit_rate": "2506652", + "duration": "7733.610000", + "filename": "The Man Who Would Be King (1975)/The.Man.Who.Would.Be.King.1975.BDRip.H264.AAC.Gopo.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2423183782", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2011-08-03T06:53:11.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2276746", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7732.515000", + "duration_ts": 185580360, + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "185395", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-02T16:37:40.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "226240", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7733.610667", + "duration_ts": 371213312, + "index": 1, + "max_bit_rate": "278696", + "nb_frames": "362513", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-03T06:54:23.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Bourne Legacy (2012)/The.Bourne.Legacy.2012.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1004865", + "duration": "7746.815000", + "filename": "The Bourne Legacy (2012)/The.Bourne.Legacy.2012.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "973063260", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-11-28T20:35:08.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64517", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7746.816000", + "duration_ts": 371847168, + "index": 0, + "max_bit_rate": "83352", + "nb_frames": "363132", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-28T20:35:08.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "936445", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7746.739000", + "duration_ts": 185921736, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "185736", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-11-28T20:35:13.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "2010 (1984)/2010.1984.1080p.BluRay.x264-nikt0.mkv": { + "format": { + "bit_rate": "6202260", + "duration": "6955.968000", + "filename": "2010 (1984)/2010.1984.1080p.BluRay.x264-nikt0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5392840470", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-09-07T01:29:17Z", + "ENCODER": "Lavf57.7.2", + "title": "2010.1984.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5753132", + "DURATION-eng": "01:55:54.948000000", + "NUMBER_OF_BYTES-eng": "5001592456", + "NUMBER_OF_FRAMES-eng": "166752", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-07 11:00:05" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:55:55.968000000", + "NUMBER_OF_BYTES-eng": "389534208", + "NUMBER_OF_FRAMES-eng": "217374", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-07 11:00:05", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6955.968000", + "duration_ts": 6955968, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:55:37.931000000", + "NUMBER_OF_BYTES-eng": "59812", + "NUMBER_OF_FRAMES-eng": "1356", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v26.0.0 ('In The Game') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-09-07 11:00:05", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "American Ultra (2015)/American Ultra 2015 1080p BluRay x264 DTS-JYK.mkv": { + "format": { + "bit_rate": "3606944", + "duration": "5741.903000", + "filename": "American Ultra (2015)/American Ultra 2015 1080p BluRay x264 DTS-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2588840973", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-11-13T03:35:39.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1036, + "coded_width": 1920, + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1036, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2850320", + "BPS-eng": "2850320", + "DURATION": "01:35:41.903000000", + "DURATION-eng": "01:35:41.903000000", + "NUMBER_OF_BYTES": "2045782746", + "NUMBER_OF_BYTES-eng": "2045782746", + "NUMBER_OF_FRAMES": "137668", + "NUMBER_OF_FRAMES-eng": "137668", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_DATE_UTC": "2015-11-13 03:35:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-11-13 03:35:39", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "754499", + "BPS-eng": "754499", + "DURATION": "01:35:41.099000000", + "DURATION-eng": "01:35:41.099000000", + "NUMBER_OF_BYTES": "541457368", + "NUMBER_OF_BYTES-eng": "541457368", + "NUMBER_OF_FRAMES": "538228", + "NUMBER_OF_FRAMES-eng": "538228", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_DATE_UTC": "2015-11-13 03:35:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-11-13 03:35:39", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Aisha Tyler Is Lit - Live At The Fillmore (2009)/Aisha Tyler Is Lit - Live at the Fillmore (2009) 480p Amazon WEB-DL DD+ 2.0 x264-TrollSD.mkv": { + "format": { + "bit_rate": "1028017", + "duration": "5097.088000", + "filename": "Aisha Tyler Is Lit - Live At The Fillmore (2009)/Aisha Tyler Is Lit - Live at the Fillmore (2009) 480p Amazon WEB-DL DD+ 2.0 x264-TrollSD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "654986923", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-23T02:13:12.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "279:157", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "186:157", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "802134", + "DURATION-eng": "01:24:57.051000000", + "NUMBER_OF_BYTES-eng": "511065088", + "NUMBER_OF_FRAMES-eng": "122207", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-23 02:13:12" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "224000", + "DURATION-eng": "01:24:57.088000000", + "NUMBER_OF_BYTES-eng": "142718464", + "NUMBER_OF_FRAMES-eng": "159284", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-23 02:13:12", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5097.088000", + "duration_ts": 5097088, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "101", + "DURATION-eng": "01:24:41.387000000", + "NUMBER_OF_BYTES-eng": "64699", + "NUMBER_OF_FRAMES-eng": "1876", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-23 02:13:12", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Slumdog Millionaire (2008)/Slumdog Millionaire[2008]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "927555", + "duration": "7237.112112", + "filename": "Slumdog Millionaire (2008)/Slumdog Millionaire[2008]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "839102464", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "790211", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7237.112112", + "duration_ts": 173517, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "173517", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "301546", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Amistad/Amistad Part 2.avi": { + "format": { + "bit_rate": "1270348", + "duration": "4620.657708", + "filename": "Amistad/Amistad Part 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733730816", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "815633", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 624, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4620.657708", + "duration_ts": 110785, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "110785", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "258756832", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Jumanji Welcome To The Jungle (2017)/Jumanji Welcome to the Jungle (2017) (WEB-DL) DD5.1 NLSubs.mkv": { + "format": { + "bit_rate": "4929067", + "duration": "7141.792000", + "filename": "Jumanji Welcome To The Jungle (2017)/Jumanji Welcome to the Jungle (2017) (WEB-DL) DD5.1 NLSubs.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4400296517", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-05T21:03:00.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "480:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7141.792000", + "duration_ts": 7141792, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "QoQ-Team" + }, + "time_base": "1/1000" + } + ] + }, + "Passengers (2016)/passengers.2016.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4405710", + "duration": "6969.408000", + "filename": "Passengers (2016)/passengers.2016.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3838149436", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-22T19:24:47.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Now You See Me (2013)/Now.You.See.Me.2013.720p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "978825", + "duration": "7488.233333", + "filename": "Now You See Me (2013)/Now.You.See.Me.2013.720p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "916208886", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-08-22T00:15:16.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "880951", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7488.105625", + "duration_ts": 179714535, + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "179535", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-08-22T00:15:16.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93770", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7488.234667", + "duration_ts": 359435264, + "index": 1, + "max_bit_rate": "101480", + "nb_frames": "351011", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-08-22T00:15:49.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Starship Troopers (1997)/7a060fcf59964d73b1f9896dc5205a69.mkv": { + "format": { + "bit_rate": "8788812", + "duration": "7777.653000", + "filename": "Starship Troopers (1997)/7a060fcf59964d73b1f9896dc5205a69.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 30, + "probe_score": 100, + "size": "8544542014", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-02-06T19:48:00.000000Z", + "encoder": "libebml v0.7.9 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "H.264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DD5.1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "OGG2.0-Commentary1" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "OGG2.0-Commentary2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hrv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "srp" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Hearing" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger", + "title": "Inscriptions" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "Inscriptions" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita", + "title": "Inscriptions" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7777.653000", + "duration_ts": 7777653, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Lemony Snicket's A Series of Unfortunate Events (2004)/Lemony Snicket's.mp4": { + "format": { + "bit_rate": "4118252", + "duration": "6478.548333", + "filename": "Lemony Snicket's A Series of Unfortunate Events (2004)/Lemony Snicket's.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3335037056", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-07-29T22:28:25.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "3794678", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6478.513708", + "duration_ts": 621937316, + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "155329", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-07-29T22:28:25.000000Z", + "handler_name": "Lemony Snicket's", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "319999", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6478.549333", + "duration_ts": 310970368, + "index": 1, + "max_bit_rate": "331144", + "nb_frames": "303682", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-07-29T22:30:23.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Dogma/Dogma.mkv": { + "format": { + "bit_rate": "2254061", + "duration": "7692.626500", + "filename": "Dogma/Dogma.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2167456659", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 712, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "6586:2875", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "148:125", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 712 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Star Trek 10 - Nemesis/Star Trek 10 Nemesis 2002 1280x544.mp4": { + "format": { + "bit_rate": "2238572", + "duration": "6990.677333", + "filename": "Star Trek 10 - Nemesis/Star Trek 10 Nemesis 2002 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1956142144", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-18T13:19:37.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1885578750/78644347", + "bit_rate": "1978296", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "42834955/2054023817", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.608622", + "duration_ts": 629154776, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "167607", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-18T13:19:37.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255763", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.677333", + "duration_ts": 335552512, + "index": 1, + "max_bit_rate": "344656", + "nb_frames": "327688", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-18T13:19:37.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Chronicles Of Narnia The Lion The Witch And The Wardrobe (2005)/The.Chronicles.Of.Narnia.The.Lion.The.Witch.And.The.Wardrobe.2005.x265.mkv": { + "format": { + "bit_rate": "6592324", + "duration": "8571.712000", + "filename": "The Chronicles Of Narnia The Lion The Witch And The Wardrobe (2005)/The.Chronicles.Of.Narnia.The.Lion.The.Witch.And.The.Wardrobe.2005.x265.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "7063438249", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2017-10-12T14:17:55.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1088, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25814583", + "BPS-eng": "25814583", + "DURATION": "02:22:51.688000000", + "DURATION-eng": "02:22:51.688000000", + "ENCODER": "Lavc58.35.100 libx265", + "NUMBER_OF_BYTES": "27659319825", + "NUMBER_OF_BYTES-eng": "27659319825", + "NUMBER_OF_FRAMES": "205515", + "NUMBER_OF_FRAMES-eng": "205515", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2255397", + "BPS-eng": "2255397", + "DURATION": "02:22:51.711000000", + "DURATION-eng": "02:22:51.712000000", + "NUMBER_OF_BYTES": "2416576760", + "NUMBER_OF_BYTES-eng": "2416576760", + "NUMBER_OF_FRAMES": "803598", + "NUMBER_OF_FRAMES-eng": "803598", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "eng", + "title": "English / DTS-HD Master Audio / 5.1 / 48 kHz / 2 256 kbps / 16-bit (DTS Core: 5.1 / 48 kHz / 1509 kbps / 16-bit)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "192000", + "BPS-eng": "192000", + "DURATION": "02:22:51.712000000", + "DURATION-eng": "02:22:51.712000000", + "NUMBER_OF_BYTES": "205721088", + "NUMBER_OF_BYTES-eng": "205721088", + "NUMBER_OF_FRAMES": "267866", + "NUMBER_OF_FRAMES-eng": "267866", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "eng", + "title": "English commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8571.712000", + "duration_ts": 8571712, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "20298", + "BPS-eng": "20298", + "DURATION": "02:17:40.253000000", + "DURATION-eng": "02:16:55.833000000", + "NUMBER_OF_BYTES": "20845809", + "NUMBER_OF_BYTES-eng": "20845809", + "NUMBER_OF_FRAMES": "2569", + "NUMBER_OF_FRAMES-eng": "2569", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8571.712000", + "duration_ts": 8571712, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72750", + "BPS-eng": "72750", + "DURATION": "02:19:19.810000000", + "DURATION-eng": "02:18:52.615000000", + "NUMBER_OF_BYTES": "75775018", + "NUMBER_OF_BYTES-eng": "75775018", + "NUMBER_OF_FRAMES": "5176", + "NUMBER_OF_FRAMES-eng": "5176", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "eng", + "title": "English commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8571.712000", + "duration_ts": 8571712, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17868", + "BPS-eng": "17868", + "DURATION": "02:13:03.393000000", + "DURATION-eng": "02:11:25.211000000", + "NUMBER_OF_BYTES": "17612011", + "NUMBER_OF_BYTES-eng": "17612011", + "NUMBER_OF_FRAMES": "2053", + "NUMBER_OF_FRAMES-eng": "2053", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8571.712000", + "duration_ts": 8571712, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17689", + "BPS-eng": "17689", + "DURATION": "02:13:21.661000000", + "DURATION-eng": "02:11:43.479000000", + "NUMBER_OF_BYTES": "17476258", + "NUMBER_OF_BYTES-eng": "17476258", + "NUMBER_OF_FRAMES": "2129", + "NUMBER_OF_FRAMES-eng": "2129", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8571.712000", + "duration_ts": 8571712, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17919", + "BPS-eng": "17919", + "DURATION": "02:13:21.661000000", + "DURATION-eng": "02:11:43.479000000", + "NUMBER_OF_BYTES": "17703725", + "NUMBER_OF_BYTES-eng": "17703725", + "NUMBER_OF_FRAMES": "2119", + "NUMBER_OF_FRAMES-eng": "2119", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-12 14:17:55", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-12 14:17:55", + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + } + ] + }, + "Kill Bill Vol 2 (2004)/Kill.Bill.Vol.1.2003.iNTERNAL.720p.BluRay.x264-LiBRARiANS.mkv": { + "format": { + "bit_rate": "4990623", + "duration": "8217.856000", + "filename": "Kill Bill Vol 2 (2004)/Kill.Bill.Vol.1.2003.iNTERNAL.720p.BluRay.x264-LiBRARiANS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5126527880", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-07-03T20:20:35.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4342812", + "BPS-eng": "4342812", + "DURATION": "02:16:57.835000000", + "DURATION-eng": "02:16:57.835000000", + "NUMBER_OF_BYTES": "4461064563", + "NUMBER_OF_BYTES-eng": "4461064563", + "NUMBER_OF_FRAMES": "197031", + "NUMBER_OF_FRAMES-eng": "197031", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-03 20:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-03 20:20:35", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:16:57.856000000", + "DURATION-eng": "02:16:57.856000000", + "NUMBER_OF_BYTES": "657428480", + "NUMBER_OF_BYTES-eng": "657428480", + "NUMBER_OF_FRAMES": "256808", + "NUMBER_OF_FRAMES-eng": "256808", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-03 20:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-03 20:20:35", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8217.856000", + "duration_ts": 8217856, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2271", + "BPS-eng": "2271", + "DURATION": "00:31:21.213000000", + "DURATION-eng": "00:31:21.213000000", + "NUMBER_OF_BYTES": "534262", + "NUMBER_OF_BYTES-eng": "534262", + "NUMBER_OF_FRAMES": "162", + "NUMBER_OF_FRAMES-eng": "162", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-03 20:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-03 20:20:35", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8217.856000", + "duration_ts": 8217856, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5425", + "BPS-eng": "5425", + "DURATION": "02:16:40.943000000", + "DURATION-eng": "02:16:40.943000000", + "NUMBER_OF_BYTES": "5561616", + "NUMBER_OF_BYTES-eng": "5561616", + "NUMBER_OF_FRAMES": "2789", + "NUMBER_OF_FRAMES-eng": "2789", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.1.0 ('Psychedelic Postcard') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2015-07-03 20:20:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-07-03 20:20:35", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Judge (2014)/The.Judge.2014.WEB-DL.720p.H264.mp4": { + "format": { + "bit_rate": "824288", + "duration": "8489.086667", + "filename": "The Judge (2014)/The.Judge.2014.WEB-DL.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "874681916", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2014-12-29T14:03:54.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64511", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8489.088000", + "duration_ts": 407476224, + "index": 0, + "max_bit_rate": "131664", + "nb_frames": "397926", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-29T14:03:54.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "755845", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8489.022208", + "duration_ts": 203736533, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "203533", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-12-29T14:04:01.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Braveheart/Braveheart.avi": { + "format": { + "bit_rate": "709718", + "duration": "10660.326994", + "filename": "Braveheart/Braveheart.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "945729536", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "582002", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 576, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "10660.326994", + "duration_ts": 255592, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "255592", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115008", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10660.320000", + "duration_ts": 444180, + "index": 1, + "nb_frames": "444180", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "J0hn W1ck (2014)/J0hn W1ck (2014) m720p x264 aac.m4v": { + "format": { + "bit_rate": "697528", + "duration": "6072.810667", + "filename": "J0hn W1ck (2014)/J0hn W1ck (2014) m720p x264 aac.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "529494697", + "start_time": "0.000000", + "tags": { + "artist": "Keanu Reeves, Michael Nyqvist, Alfie Allen, Willem Dafoe, Dean Winters, Adrianne Palicki, Omer Barnea, Toby Leonard Moore, Daniel Bernhardt, Bridget Moynahan, John Leguizamo, Ian McShane, Bridget Regan, Lance Reddick, David Patrick Kelly, Clarke Pete...", + "comment": "Information courtesy of TMDb (www.themoviedb.org). Used with permission.", + "compatible_brands": "mp42isomavc1", + "creation_time": "2015-01-13T18:51:16.000000Z", + "date": "2014-10-24T10:00:00Z", + "description": "Don't set him off.", + "disc": "0", + "encoder": "iFlicks", + "episode_sort": "0", + "gapless_playback": "0", + "genre": "Action", + "hd_video": "1", + "iTunMOVI": "\n\n\n\n\tcast\n\t\n\t\t\n\t\t\tname\n\t\t\tKeanu Reeves\n\t\t\n\t\t\n\t\t\tname\n\t\t\tMichael Nyqvist\n\t\t\n\t\t\n\t\t\tname\n\t\t\tAlfie Allen\n\t\t\n\t\t\n\t\t\tname\n\t\t\tWillem Dafoe\n\t\t\n\t\t\n\t\t\tname\n\t\t\tDean Winters\n\t\t\n\t\t\n\t\t\tname\n\t\t\tAdrianne Palicki\n\t\t\n\t\t\n\t\t\tname\n\t\t\tOmer Barnea\n\t\t\n\t\t\n\t\t\tname\n\t\t\tToby Leonard Moore\n\t\t\n\t\t\n\t\t\tname\n\t\t\tDaniel Bernhardt\n\t\t\n\t\t\n\t\t\tname\n\t\t\tBridget Moynahan\n\t\t\n\t\t\n\t\t\tname\n\t\t\tJohn Leguizamo\n\t\t\n\t\t\n\t\t\tname\n\t\t\tIan McShane\n\t\t\n\t\t\n\t\t\tname\n\t\t\tBridget Regan\n\t\t\n\t\t\n\t\t\tname\n\t\t\tLance Reddick\n\t\t\n\t\t\n\t\t\tname\n\t\t\tDavid Patrick Kelly\n\t\t\n\t\t\n\t\t\tname\n\t\t\tClarke Pete...\n\t\t\n\t\n\tdirectors\n\t\n\t\t\n\t\t\tname\n\t\t\tChad Stahelski\n\t\t\n\t\t\n\t\t\tname\n\t\t\tDavid Leitch\n\t\t\n\t\n\tproducers\n\t\n\t\t\n\t\t\tname\n\t\t\tDavid Leitch\n\t\t\n\t\t\n\t\t\tname\n\t\t\tBasil Iwanyk\n\t\t\n\t\t\n\t\t\tname\n\t\t\tMike Witherill\n\t\t\n\t\t\n\t\t\tname\n\t\t\tJonathan Sela\n\t\t\n\t\t\n\t\t\tname\n\t\t\tTyler Bates\n\t\t\n\t\t\n\t\t\tname\n\t\t\tEl�sabet Ronaldsd�ttir\n\t\t\n\t\t\n\t\t\tname\n\t\t\tJessica Kelly\n\t\t\n\t\t\n\t\t\tname\n\t\t\tSuzanne Smith Crowley\n\t\t\n\t\t\n\t\t\tname\n\t\t\tDan Leigh\n\t\t\n\t\t\n\t\t\tname\n\t\t\tLuca Mosca\n\t\t\n\t\t\n\t\t\tname\n\t\t\tEva Longoria\n\t\t\n\t\t\n\t\t\tname\n\t\t\tChad Stahelski\n\t\t\n\t\t\n\t\t\tname\n\t\t\tKevin Scott Frakes\n\t\t\n\t\t\n\t\t\tname\n\t\t\tStephen Hamel\n\t\t\n\t\t\n\t\t\tname\n\t\t\tTara Moross\n\t\t\n\t\t\n\t\t\tname\n\t\t\tKeanu Reeves\n\t\t\n\t\t\n\t\t\tname\n\t\t\tAndrew C. Robinson\n\t\t\n\t\t\n\t\t\tname\n\t\t\tRaj Brinder Singh\n\t\t\n\t\t\n\t\t\tname\n\t\t\tJared Underwood\n\t\t\n\t\t\n\t\t\tname\n\t\t\tMike Upton\n\t\t\n\t\n\tscreenwriters\n\t\n\t\t\n\t\t\tname\n\t\t\tDerek Kolstad\n\t\t\n\t\n\n\n", + "major_brand": "mp42", + "media_type": "9", + "minor_version": "0", + "network": "Lionsgate, 87Eleven, DefyNite Films, Summit Entertainment", + "rating": "0", + "season_number": "0", + "synopsis": "An ex-hitman comes out of retirement to track down the gangsters that took everything from him.", + "title": "John Wick", + "track": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2911980/121453", + "bit_rate": "528906", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "121453/5823960", + "codec_type": "video", + "coded_height": 530, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "128:53", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6072.650000", + "duration_ts": 546538500, + "has_b_frames": 2, + "height": 530, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "145599", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-01-13T18:51:16.000000Z", + "encoder": "JVT/AVC Coding", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159668", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6072.810667", + "duration_ts": 291494912, + "index": 1, + "max_bit_rate": "291952", + "nb_frames": "284663", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-01-13T18:51:16.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "35", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6072.810667", + "duration_ts": 546552960, + "height": 60, + "index": 2, + "nb_frames": "1892", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-01-13T18:51:16.000000Z", + "language": "eng", + "rotate": "0" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 1500, + "coded_width": 1000, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "2:3", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6072.810667", + "duration_ts": 546552960, + "has_b_frames": 0, + "height": 1500, + "index": 3, + "level": -99, + "pix_fmt": "yuvj420p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 1000 + } + ] + }, + "Iron Man 2 (2010)/74943ff88a8e4d7b96679986adace84e.mkv": { + "format": { + "bit_rate": "13919955", + "duration": "7476.672000", + "filename": "Iron Man 2 (2010)/74943ff88a8e4d7b96679986adace84e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 47, + "probe_score": 100, + "size": "13009368039", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-14T11:47:32.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 824, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "960:409", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 818, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "11714135", + "DURATION-eng": "02:04:34.634000000", + "NUMBER_OF_BYTES-eng": "10944859871", + "NUMBER_OF_FRAMES-eng": "179212", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1536000", + "DURATION-eng": "02:04:34.656000000", + "NUMBER_OF_BYTES-eng": "1435133952", + "NUMBER_OF_FRAMES-eng": "233583", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "224000", + "DURATION-eng": "02:04:36.672000000", + "NUMBER_OF_BYTES-eng": "209346816", + "NUMBER_OF_FRAMES-eng": "233646", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "eng", + "title": "Commentary with director Jon Favreau" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "67", + "DURATION-eng": "02:04:09.567000000", + "NUMBER_OF_BYTES-eng": "63284", + "NUMBER_OF_FRAMES-eng": "1526", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "73", + "DURATION-eng": "02:04:16.949000000", + "NUMBER_OF_BYTES-eng": "68418", + "NUMBER_OF_FRAMES-eng": "1720", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15928", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "14870986", + "NUMBER_OF_FRAMES-eng": "2840", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33542", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "31315627", + "NUMBER_OF_FRAMES-eng": "2928", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24604", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "22970853", + "NUMBER_OF_FRAMES-eng": "3022", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "chi", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "27543", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "25715201", + "NUMBER_OF_FRAMES-eng": "3544", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31841", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "29727330", + "NUMBER_OF_FRAMES-eng": "2992", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "hrv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28223", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "26349323", + "NUMBER_OF_FRAMES-eng": "2978", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30663", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "28627582", + "NUMBER_OF_FRAMES-eng": "2210", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26751", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "24975339", + "NUMBER_OF_FRAMES-eng": "2352", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37905", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "35389238", + "NUMBER_OF_FRAMES-eng": "3096", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28200", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "26328178", + "NUMBER_OF_FRAMES-eng": "2784", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33693", + "DURATION-eng": "02:04:09.233000000", + "NUMBER_OF_BYTES-eng": "31374080", + "NUMBER_OF_FRAMES-eng": "3216", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "23429", + "DURATION-eng": "02:04:28.962000000", + "NUMBER_OF_BYTES-eng": "21873957", + "NUMBER_OF_FRAMES-eng": "2854", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "29281", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "27337479", + "NUMBER_OF_FRAMES-eng": "3108", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "hin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "28653", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "26751482", + "NUMBER_OF_FRAMES-eng": "2458", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33077", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "30881291", + "NUMBER_OF_FRAMES-eng": "2832", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "ice" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37271", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "34797316", + "NUMBER_OF_FRAMES-eng": "3062", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "41383", + "DURATION-eng": "02:04:09.400000000", + "NUMBER_OF_BYTES-eng": "38535289", + "NUMBER_OF_FRAMES-eng": "2926", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26277", + "DURATION-eng": "02:04:09.358000000", + "NUMBER_OF_BYTES-eng": "24468351", + "NUMBER_OF_FRAMES-eng": "3124", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "18229", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "17019452", + "NUMBER_OF_FRAMES-eng": "2900", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24214", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "22606972", + "NUMBER_OF_FRAMES-eng": "2816", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "lav" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32072", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "29943138", + "NUMBER_OF_FRAMES-eng": "2816", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "lit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39373", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "36759776", + "NUMBER_OF_FRAMES-eng": "3078", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "may" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35337", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "32991888", + "NUMBER_OF_FRAMES-eng": "3036", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33372", + "DURATION-eng": "02:04:09.358000000", + "NUMBER_OF_BYTES-eng": "31075619", + "NUMBER_OF_FRAMES-eng": "2896", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "30279", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "28269101", + "NUMBER_OF_FRAMES-eng": "2954", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32478", + "DURATION-eng": "02:04:09.567000000", + "NUMBER_OF_BYTES-eng": "30244159", + "NUMBER_OF_FRAMES-eng": "2792", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "35565", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "33204526", + "NUMBER_OF_FRAMES-eng": "3116", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "por", + "title": "Iberian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39137", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "36539154", + "NUMBER_OF_FRAMES-eng": "3100", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31846", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "29732529", + "NUMBER_OF_FRAMES-eng": "2996", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "srp" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36935", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "34483057", + "NUMBER_OF_FRAMES-eng": "3098", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "slo" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 35, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26916", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "25129302", + "NUMBER_OF_FRAMES-eng": "2892", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 36, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36227", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "33821871", + "NUMBER_OF_FRAMES-eng": "3092", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "spa", + "title": "Castilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 37, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37373", + "DURATION-eng": "02:04:09.483000000", + "NUMBER_OF_BYTES-eng": "34801616", + "NUMBER_OF_FRAMES-eng": "2990", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "spa", + "title": "Latin American" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 38, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39754", + "DURATION-eng": "02:04:09.358000000", + "NUMBER_OF_BYTES-eng": "37017925", + "NUMBER_OF_FRAMES-eng": "2442", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 39, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "25464", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "23773597", + "NUMBER_OF_FRAMES-eng": "2840", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 40, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31983", + "DURATION-eng": "02:04:28.837000000", + "NUMBER_OF_BYTES-eng": "29859852", + "NUMBER_OF_FRAMES-eng": "2888", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 41, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37029", + "DURATION-eng": "02:04:28.878000000", + "NUMBER_OF_BYTES-eng": "34571364", + "NUMBER_OF_FRAMES-eng": "3122", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "ukr" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 42, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "109", + "DURATION-eng": "02:04:23.748000000", + "NUMBER_OF_BYTES-eng": "102469", + "NUMBER_OF_FRAMES-eng": "2145", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 43, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "57595", + "DURATION-eng": "02:04:30.505000000", + "NUMBER_OF_BYTES-eng": "53783544", + "NUMBER_OF_FRAMES-eng": "4292", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "fre", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 44, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "60154", + "DURATION-eng": "02:04:30.505000000", + "NUMBER_OF_BYTES-eng": "56172751", + "NUMBER_OF_FRAMES-eng": "4294", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "ita", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 45, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "37882", + "DURATION-eng": "02:04:30.505000000", + "NUMBER_OF_BYTES-eng": "35375502", + "NUMBER_OF_FRAMES-eng": "4292", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "kor", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7476.672000", + "duration_ts": 7476672, + "index": 46, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "58393", + "DURATION-eng": "02:04:30.505000000", + "NUMBER_OF_BYTES-eng": "54528328", + "NUMBER_OF_FRAMES-eng": "4292", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-14 11:47:32", + "language": "spa", + "title": "Commentary" + }, + "time_base": "1/1000" + } + ] + }, + "Louis C K 2017 (2017)/19d54848cd5940dc8f5912854946b0f3.mkv": { + "format": { + "bit_rate": "2532077", + "duration": "4467.171000", + "filename": "Louis C K 2017 (2017)/19d54848cd5940dc8f5912854946b0f3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "1413902812", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-31T21:46:18.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2145533", + "BPS-eng": "2145533", + "DURATION": "01:14:27.171000000", + "DURATION-eng": "01:14:27.171000000", + "NUMBER_OF_BYTES": "1198058078", + "NUMBER_OF_BYTES-eng": "1198058078", + "NUMBER_OF_FRAMES": "107105", + "NUMBER_OF_FRAMES-eng": "107105", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:14:27.104000000", + "DURATION-eng": "01:14:27.104000000", + "NUMBER_OF_BYTES": "214420992", + "NUMBER_OF_BYTES-eng": "214420992", + "NUMBER_OF_FRAMES": "139597", + "NUMBER_OF_FRAMES-eng": "139597", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4467.171000", + "duration_ts": 4467171, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "85", + "BPS-eng": "85", + "DURATION": "01:14:05.399000000", + "DURATION-eng": "01:14:05.399000000", + "NUMBER_OF_BYTES": "47387", + "NUMBER_OF_BYTES-eng": "47387", + "NUMBER_OF_FRAMES": "1271", + "NUMBER_OF_FRAMES-eng": "1271", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4467.171000", + "duration_ts": 4467171, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:14:15.118000000", + "DURATION-eng": "01:14:15.118000000", + "NUMBER_OF_BYTES": "40105", + "NUMBER_OF_BYTES-eng": "40105", + "NUMBER_OF_FRAMES": "1044", + "NUMBER_OF_FRAMES-eng": "1044", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4467.171000", + "duration_ts": 4467171, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "01:14:20.123000000", + "DURATION-eng": "01:14:20.123000000", + "NUMBER_OF_BYTES": "41544", + "NUMBER_OF_BYTES-eng": "41544", + "NUMBER_OF_FRAMES": "1047", + "NUMBER_OF_FRAMES-eng": "1047", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4467.171000", + "duration_ts": 4467171, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:14:20.123000000", + "DURATION-eng": "01:14:20.123000000", + "NUMBER_OF_BYTES": "40262", + "NUMBER_OF_BYTES-eng": "40262", + "NUMBER_OF_FRAMES": "1055", + "NUMBER_OF_FRAMES-eng": "1055", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4467.171000", + "duration_ts": 4467171, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "01:14:16.119000000", + "DURATION-eng": "01:14:16.119000000", + "NUMBER_OF_BYTES": "37279", + "NUMBER_OF_BYTES-eng": "37279", + "NUMBER_OF_FRAMES": "1057", + "NUMBER_OF_FRAMES-eng": "1057", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:46:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:46:18", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Sherlock Holmes (2009)/cbgb-sherlockholmes720.mkv": { + "format": { + "bit_rate": "7313087", + "duration": "7704.697000", + "filename": "Sherlock Holmes (2009)/cbgb-sherlockholmes720.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "7043139983", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-08T21:31:54.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7704.697000", + "duration_ts": 7704697, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Water for Elephants (2011)/Water for Elephants (2011) DVDRip XviD-MAXSPEED www.torentz.xforum.ro.avi": { + "format": { + "bit_rate": "1753470", + "duration": "6931.720000", + "filename": "Water for Elephants (2011)/Water for Elephants (2011) DVDRip XviD-MAXSPEED www.torentz.xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1519320612", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.8.3, Feb 16 201019:42:50" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1299903", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6931.720000", + "duration_ts": 173293, + "has_b_frames": 0, + "height": 304, + "index": 0, + "level": 3, + "nb_frames": "173293", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "388175872", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Hot Fuzz/Hot.Fuzz[2007]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "846465", + "duration": "6950.000000", + "filename": "Hot Fuzz/Hot.Fuzz[2007]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735367168", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "724759", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 244, + "coded_width": 592, + "display_aspect_ratio": "148:61", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6950.000000", + "duration_ts": 173750, + "has_b_frames": 1, + "height": 244, + "index": 0, + "level": 5, + "nb_frames": "173750", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "289583", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Beerfest/Beerfest.UNRATED.DVDRip.XviD.CD1-DiAMOND.[www.torrentfive.com].avi": { + "format": { + "bit_rate": "1807454", + "duration": "3247.702792", + "filename": "Beerfest/Beerfest.UNRATED.DVDRip.XviD.CD1-DiAMOND.[www.torrentfive.com].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733759488", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1416705", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 656, + "display_aspect_ratio": "41:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3247.702792", + "duration_ts": 77867, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "77867", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "155888488", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Primer (2004)/Primer[2004]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1323344", + "duration": "4434.960000", + "filename": "Primer (2004)/Primer[2004]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733622272", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1121640", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 308, + "coded_width": 564, + "display_aspect_ratio": "141:77", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4434.960000", + "duration_ts": 110874, + "has_b_frames": 1, + "height": 308, + "index": 0, + "level": 5, + "nb_frames": "110874", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 564 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "106439040", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Mikes New Car (2002)/mikes.new.car.2002.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4646150", + "duration": "228.832000", + "filename": "Mikes New Car (2002)/mikes.new.car.2002.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "132898483", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-27T22:46:35.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 960, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Grand Budapest Hotel (2014)/The.Grand.Budapest.Hotel.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2074786", + "duration": "5995.113333", + "filename": "The Grand Budapest Hotel (2014)/The.Grand.Budapest.Hotel.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1554822306", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-06-05T05:16:26.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1976915", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5994.989000", + "duration_ts": 143879736, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "143736", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-06-05T05:16:26.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93761", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5995.114667", + "duration_ts": 287765504, + "index": 1, + "max_bit_rate": "102960", + "nb_frames": "281021", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-06-05T05:16:41.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Munich/Munich[2005]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "767258", + "duration": "9831.247915", + "filename": "Munich/Munich[2005]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "942888960", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "677952", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 216, + "coded_width": 524, + "display_aspect_ratio": "131:54", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "9831.247915", + "duration_ts": 235714, + "has_b_frames": 1, + "height": 216, + "index": 0, + "level": 5, + "nb_frames": "235714", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 524 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "80000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "409635", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "A Christmas Story/A Christmas Story.avi": { + "format": { + "bit_rate": "1345068", + "duration": "5614.322656", + "filename": "A Christmas Story/A Christmas Story.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943955968", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1272337", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 512, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5614.322656", + "duration_ts": 134609, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "134609", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "60024", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5614.320000", + "duration_ts": 233930, + "index": 1, + "nb_frames": "233930", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Memento (2000)/Memento [10th Anniversary Edition].2000.BRRip.XviD.AC3-VLiS.avi": { + "format": { + "bit_rate": "1719403", + "duration": "6806.627727", + "filename": "Memento (2000)/Memento [10th Anniversary Edition].2000.BRRip.XviD.AC3-VLiS.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1462917120", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2542/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1262030", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6806.627727", + "duration_ts": 163196, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "163196", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "10000000/417083", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "381170944", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "You, Me and Dupree/You, Me and Dupree (2006) [DVDRip.XviD].avi": { + "format": { + "bit_rate": "894910", + "duration": "6564.144000", + "filename": "You, Me and Dupree/You, Me and Dupree (2006) [DVDRip.XviD].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734289920", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "770381", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6564.140917", + "duration_ts": 157382, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "157382", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111824", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6564.144000", + "duration_ts": 273506, + "index": 1, + "nb_frames": "273506", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Galaxy Quest/Galaxy Quest.avi": { + "format": { + "bit_rate": "1424863", + "duration": "6125.376000", + "filename": "Galaxy Quest/Galaxy Quest.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1090977792", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1298787", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 720, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6125.375375", + "duration_ts": 146862, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "146862", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "113376", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6125.376000", + "duration_ts": 255224, + "index": 1, + "nb_frames": "255224", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Battlestar Galactica Blood And Chrome (2012)/Battlestar Galactica Blood and Chrome 2012 720p-anon.mkv": { + "format": { + "bit_rate": "6678448", + "duration": "5612.190000", + "filename": "Battlestar Galactica Blood And Chrome (2012)/Battlestar Galactica Blood and Chrome 2012 720p-anon.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4685090383", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5612.190000", + "duration_ts": 5612190, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "Back to School/Back to School.mp4": { + "format": { + "bit_rate": "2112873", + "duration": "5798.912000", + "filename": "Back to School/Back to School.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1531545996", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-23T23:40:40.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "825998309/34439499", + "bit_rate": "1944131", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "34439499/1651996618", + "codec_type": "video", + "coded_height": 472, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "320:177", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5798.898022", + "duration_ts": 521900822, + "has_b_frames": 1, + "height": 472, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "139081", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-23T23:40:40.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "163168", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5798.912000", + "duration_ts": 278347776, + "index": 1, + "max_bit_rate": "253056", + "nb_frames": "271824", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-23T23:40:40.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "American History X/American History X.mkv": { + "format": { + "bit_rate": "2252432", + "duration": "7129.556000", + "filename": "American History X/American History X.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2007355564", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 472, + "coded_width": 718, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "57799:32096", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 472, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "161:136", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Will Ferrell You're Welcome America (2009)/vmr-willfusa-xvid.avi": { + "format": { + "bit_rate": "867060", + "duration": "6768.672000", + "filename": "Will Ferrell You're Welcome America (2009)/vmr-willfusa-xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733605888", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "723649", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 576, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6768.668669", + "duration_ts": 202857, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "202857", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129528", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6768.672000", + "duration_ts": 282028, + "index": 1, + "nb_frames": "282028", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Whats Eating Gilbert Grape/Whats Eating Gilbert Grape.avi": { + "format": { + "bit_rate": "1662851", + "duration": "7051.509843", + "filename": "Whats Eating Gilbert Grape/Whats Eating Gilbert Grape.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1465702010", + "start_time": "0.000000", + "tags": { + "encoder": "transcode-0.6.14" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1208154", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 592, + "display_aspect_ratio": "37:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7051.509843", + "duration_ts": 169067, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "169067", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "394884551", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "The Predator (2018)/OdN9bOWjzy7YMX6x3MYQ.mkv": { + "format": { + "bit_rate": "4939993", + "duration": "6456.655000", + "filename": "The Predator (2018)/OdN9bOWjzy7YMX6x3MYQ.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3986978874", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-11-27T05:11:22.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:46:57.696000000", + "NUMBER_OF_BYTES-eng": "308049408", + "NUMBER_OF_FRAMES-eng": "200553", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-27 05:11:22", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 802, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "960:401", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 802, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS-eng": "4556460", + "DURATION-eng": "01:47:36.612000000", + "NUMBER_OF_BYTES-eng": "3677412518", + "NUMBER_OF_FRAMES-eng": "154805", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-11-27 05:11:22", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Barry Lyndon/Barry Lyndon.mp4": { + "format": { + "bit_rate": "2333411", + "duration": "11113.813333", + "filename": "Barry Lyndon/Barry Lyndon.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3241637556", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-09T21:24:43.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "352498039/14654518", + "bit_rate": "2196972", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "7327259/352498039", + "codec_type": "video", + "coded_height": 404, + "coded_width": 714, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "476:303", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11113.757267", + "duration_ts": 1000238154, + "has_b_frames": 1, + "height": 404, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "267329", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "8:9", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-09T21:24:43.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 714 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131038", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11113.813333", + "duration_ts": 533463040, + "index": 1, + "max_bit_rate": "165912", + "nb_frames": "520960", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-09T21:24:43.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Hunger Games Catching Fire (2013)/The.Hunger.Games.Catching.Fire.2013.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "6420938", + "duration": "8774.515000", + "filename": "The Hunger Games Catching Fire (2013)/The.Hunger.Games.Catching.Fire.2013.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "7042578095", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8774.515000", + "duration_ts": 8774515, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8774.515000", + "duration_ts": 8774515, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Pacific Rim (2013)/Pacific.Rim.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2124900", + "duration": "7877.951667", + "filename": "Pacific Rim (2013)/Pacific.Rim.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2092482749", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-10-06T11:04:34.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2027308", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7876.827292", + "duration_ts": 189043855, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "188855", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-10-06T11:04:34.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93804", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7877.952000", + "duration_ts": 378141696, + "index": 1, + "max_bit_rate": "103936", + "nb_frames": "369279", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-10-06T11:04:58.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Doctor Strange (2016)/Doctor.Strange.2016.1080p.HDRip.X264.AC3-EVO.mkv": { + "format": { + "bit_rate": "4660720", + "duration": "6621.240000", + "filename": "Doctor Strange (2016)/Doctor.Strange.2016.1080p.HDRip.X264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3857468978", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-10T17:27:46.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 64, + "start_time": "0.064000", + "tags": { + "language": "eng", + "title": "Stereo" + }, + "time_base": "1/1000" + } + ] + }, + "Ponyo (2008)/Ponyo 2008 720p BRRip x264-MgB.mp4": { + "format": { + "bit_rate": "2319556", + "duration": "6050.068333", + "filename": "Ponyo (2008)/Ponyo 2008 720p BRRip x264-MgB.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1754184758", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2012-06-24T13:15:10.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "658445421/27462661", + "bit_rate": "2000154", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "27462661/1316890842", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "159:86", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6049.876667", + "duration_ts": 544488900, + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "145052", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "159:160", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-24T13:59:20.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "314553", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6050.069333", + "duration_ts": 290403328, + "index": 1, + "max_bit_rate": "440248", + "nb_frames": "283597", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-24T13:16:43.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Hobbit An Unexpected Journey (2012)/The.Hobbit.An.Unexpected.Journey.2012.1080p.BRrip.x264.GAZ.YIFY.mp4": { + "format": { + "bit_rate": "2109999", + "duration": "10177.173333", + "filename": "The Hobbit An Unexpected Journey (2012)/The.Hobbit.An.Unexpected.Journey.2012.1080p.BRrip.x264.GAZ.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2684228434", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-28T18:20:47.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2010325", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10177.083583", + "duration_ts": 244250006, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "244006", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-02-28T18:20:47.000000Z", + "handler_name": "hobbit.an.unexpected.journey.2012.1080p.bluray.x264-sparks.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95912", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10177.173333", + "duration_ts": 488504320, + "index": 1, + "max_bit_rate": "128664", + "nb_frames": "477055", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-28T14:55:13.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "X-Men Origins Wolverine (2009)/X-Men.Origins.Wolverine.2009.Blu-Ray.1080p.x264.DTS-PRoDJi.dual.mkv": { + "format": { + "bit_rate": "10881445", + "duration": "6444.182000", + "filename": "X-Men Origins Wolverine (2009)/X-Men.Origins.Wolverine.2009.Blu-Ray.1080p.x264.DTS-PRoDJi.dual.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 9, + "probe_score": 100, + "size": "8765251792", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-16T16:35:42.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8901124", + "BPS-eng": "8901124", + "DURATION": "01:47:23.974000000", + "DURATION-eng": "01:47:23.974000000", + "NUMBER_OF_BYTES": "7169826833", + "NUMBER_OF_BYTES-eng": "7169826833", + "NUMBER_OF_FRAMES": "154501", + "NUMBER_OF_FRAMES-eng": "154501", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "eng", + "title": "x264@8900 Kbps High Profile@L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509764", + "BPS-eng": "1509764", + "DURATION": "01:47:24.182000000", + "DURATION-eng": "01:47:24.182000000", + "NUMBER_OF_BYTES": "1216149924", + "NUMBER_OF_BYTES-eng": "1216149924", + "NUMBER_OF_FRAMES": "604148", + "NUMBER_OF_FRAMES-eng": "604148", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "eng", + "title": "DTS@1536 Kbps 6 ch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6444.182000", + "duration_ts": 6444182, + "height": 1080, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3981", + "BPS-eng": "3981", + "DURATION": "01:40:31.682000000", + "DURATION-eng": "01:40:31.682000000", + "NUMBER_OF_BYTES": "3002095", + "NUMBER_OF_BYTES-eng": "3002095", + "NUMBER_OF_FRAMES": "842", + "NUMBER_OF_FRAMES-eng": "842", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6444.182000", + "duration_ts": 6444182, + "height": 1080, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3346", + "BPS-eng": "3346", + "DURATION": "01:46:37.930000000", + "DURATION-eng": "01:46:37.930000000", + "NUMBER_OF_BYTES": "2676574", + "NUMBER_OF_BYTES-eng": "2676574", + "NUMBER_OF_FRAMES": "857", + "NUMBER_OF_FRAMES-eng": "857", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6444.182000", + "duration_ts": 6444182, + "height": 1080, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3322", + "BPS-eng": "3322", + "DURATION": "01:46:37.930000000", + "DURATION-eng": "01:46:37.930000000", + "NUMBER_OF_BYTES": "2657052", + "NUMBER_OF_BYTES-eng": "2657052", + "NUMBER_OF_FRAMES": "856", + "NUMBER_OF_FRAMES-eng": "856", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "por" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6444.182000", + "duration_ts": 6444182, + "height": 1080, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3969", + "BPS-eng": "3969", + "DURATION": "01:46:25.744000000", + "DURATION-eng": "01:46:25.744000000", + "NUMBER_OF_BYTES": "3168334", + "NUMBER_OF_BYTES-eng": "3168334", + "NUMBER_OF_FRAMES": "840", + "NUMBER_OF_FRAMES-eng": "840", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "tur" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6444.182000", + "duration_ts": 6444182, + "height": 1080, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2898", + "BPS-eng": "2898", + "DURATION": "01:46:37.930000000", + "DURATION-eng": "01:46:37.930000000", + "NUMBER_OF_BYTES": "2318348", + "NUMBER_OF_BYTES-eng": "2318348", + "NUMBER_OF_FRAMES": "858", + "NUMBER_OF_FRAMES-eng": "858", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "rus" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6444.182000", + "duration_ts": 6444182, + "height": 1080, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2959", + "BPS-eng": "2959", + "DURATION": "01:46:37.930000000", + "DURATION-eng": "01:46:37.930000000", + "NUMBER_OF_BYTES": "2366878", + "NUMBER_OF_BYTES-eng": "2366878", + "NUMBER_OF_FRAMES": "859", + "NUMBER_OF_FRAMES-eng": "859", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "chi" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 8, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 12, + "start_time": "0.012000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "01:47:20.608000000", + "DURATION-eng": "01:47:20.608000000", + "NUMBER_OF_BYTES": "360674048", + "NUMBER_OF_BYTES-eng": "360674048", + "NUMBER_OF_FRAMES": "201269", + "NUMBER_OF_FRAMES-eng": "201269", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.4.0 ('Circles') 64bit built on Dec 12 2014 12:19:56", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-16 16:35:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-16 16:35:42", + "language": "tur", + "title": "AC3@448 Kbps 6 ch" + }, + "time_base": "1/1000" + } + ] + }, + "Corpse Bride/Corpse Bride.avi": { + "format": { + "bit_rate": "1267406", + "duration": "4629.587921", + "filename": "Corpse Bride/Corpse Bride.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733446144", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1065906", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 312, + "coded_width": 572, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4629.587921", + "duration_ts": 110999, + "has_b_frames": 1, + "height": 312, + "index": 0, + "level": 5, + "nb_frames": "110999", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 572 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "111110110", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Spider-Man (2002)/Spiderman.m4v": { + "format": { + "bit_rate": "2114558", + "duration": "7272.992000", + "filename": "Spider-Man (2002)/Spiderman.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1922395846", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T12:02:57.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1307947500/54546617", + "bit_rate": "1496579", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "42338862/2030447047", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "421:232", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7272.882267", + "duration_ts": 654559404, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "174393", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "421:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T12:02:57.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164811", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7272.981333", + "duration_ts": 349103104, + "index": 1, + "max_bit_rate": "275752", + "nb_frames": "340921", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T12:02:57.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "7272.992000", + "duration_ts": 349103616, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "227281", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T12:02:57.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Magnolia/Magnolia.avi": { + "format": { + "bit_rate": "515799", + "duration": "11131.131131", + "filename": "Magnolia/Magnolia.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "717678592", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "378746", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "11131.131131", + "duration_ts": 266880, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "266880", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "177684648", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/15963" + } + ] + }, + "America - Freedom to Fascism/America - Freedom to Fascism.mp4": { + "format": { + "bit_rate": "398654", + "duration": "6683.338333", + "filename": "America - Freedom to Fascism/America - Freedom to Fascism.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "333043106", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2007-05-25T00:41:36.000000Z", + "major_brand": "isom", + "minor_version": "1", + "title": "America: Freedom to Fascism - Directors Authorized Version" + } + }, + "streams": [ + { + "avg_frame_rate": "29969/1000", + "bit_rate": "293187", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "500/29969", + "codec_type": "video", + "coded_height": 240, + "coded_width": 320, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6683.339451", + "duration_ts": 200293000, + "has_b_frames": 0, + "height": 240, + "index": 0, + "is_avc": "true", + "level": 13, + "nal_length_size": "4", + "nb_frames": "200293", + "pix_fmt": "yuv420p", + "profile": "Baseline", + "r_frame_rate": "29969/1000", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2007-05-25T00:41:36.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/29969", + "width": 320 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "102990", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6676.131701", + "duration_ts": 294417408, + "index": 1, + "max_bit_rate": "267712", + "nb_frames": "287517", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2007-05-25T00:42:00.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/44100" + } + ] + }, + "The Money Pit/The Money Pit.avi": { + "format": { + "bit_rate": "1075508", + "duration": "5453.205576", + "filename": "The Money Pit/The Money Pit.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733121396", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "500000/16683", + "bit_rate": "939665", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "16683/500000", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5453.205576", + "duration_ts": 163436, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": -99, + "nb_frames": "163436", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "16683/500000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "54533", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Shrek Forever After (2010)/Shrek.Forever.After.2010.BDRip.810p.x264-PRoDJi.dual.mkv": { + "format": { + "bit_rate": "6713383", + "duration": "5590.560000", + "filename": "Shrek Forever After (2010)/Shrek.Forever.After.2010.BDRip.810p.x264-PRoDJi.dual.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "4691446491", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-12-04T09:27:54.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 612, + "coded_width": 1440, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 612, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5407187", + "BPS-eng": "5407187", + "DURATION": "01:33:10.511000000", + "DURATION-eng": "01:33:10.511000000", + "NUMBER_OF_BYTES": "3778617604", + "NUMBER_OF_BYTES-eng": "3778617604", + "NUMBER_OF_FRAMES": "134038", + "NUMBER_OF_FRAMES-eng": "134038", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "eng", + "title": "@5400Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:33:10.560000000", + "DURATION-eng": "01:33:10.560000000", + "NUMBER_OF_BYTES": "447244800", + "NUMBER_OF_BYTES-eng": "447244800", + "NUMBER_OF_FRAMES": "174705", + "NUMBER_OF_FRAMES-eng": "174705", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "eng", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5590.560000", + "duration_ts": 5590560, + "height": 822, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4804", + "BPS-eng": "4804", + "DURATION": "01:32:23.618000000", + "DURATION-eng": "01:32:23.618000000", + "NUMBER_OF_BYTES": "3329442", + "NUMBER_OF_BYTES-eng": "3329442", + "NUMBER_OF_FRAMES": "1033", + "NUMBER_OF_FRAMES-eng": "1033", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5590.560000", + "duration_ts": 5590560, + "height": 822, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4628", + "BPS-eng": "4628", + "DURATION": "01:32:29.249000000", + "DURATION-eng": "01:32:29.249000000", + "NUMBER_OF_BYTES": "3210892", + "NUMBER_OF_BYTES-eng": "3210892", + "NUMBER_OF_FRAMES": "1086", + "NUMBER_OF_FRAMES-eng": "1086", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "tur" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5590.560000", + "duration_ts": 5590560, + "height": 822, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4842", + "BPS-eng": "4842", + "DURATION": "01:32:29.165000000", + "DURATION-eng": "01:32:29.165000000", + "NUMBER_OF_BYTES": "3358698", + "NUMBER_OF_BYTES-eng": "3358698", + "NUMBER_OF_FRAMES": "1023", + "NUMBER_OF_FRAMES-eng": "1023", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "ger" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5590.560000", + "duration_ts": 5590560, + "height": 822, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4696", + "BPS-eng": "4696", + "DURATION": "01:32:29.249000000", + "DURATION-eng": "01:32:29.249000000", + "NUMBER_OF_BYTES": "3258017", + "NUMBER_OF_BYTES-eng": "3258017", + "NUMBER_OF_FRAMES": "1039", + "NUMBER_OF_FRAMES-eng": "1039", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "ita" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5590.560000", + "duration_ts": 5590560, + "height": 822, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4991", + "BPS-eng": "4991", + "DURATION": "01:32:29.249000000", + "DURATION-eng": "01:32:29.249000000", + "NUMBER_OF_BYTES": "3462604", + "NUMBER_OF_BYTES-eng": "3462604", + "NUMBER_OF_FRAMES": "1074", + "NUMBER_OF_FRAMES-eng": "1074", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "spa" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 7, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:33:10.560000000", + "DURATION-eng": "01:33:10.560000000", + "NUMBER_OF_BYTES": "447244800", + "NUMBER_OF_BYTES-eng": "447244800", + "NUMBER_OF_FRAMES": "174705", + "NUMBER_OF_FRAMES-eng": "174705", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 22 2014 18:53:34", + "_STATISTICS_WRITING_DATE_UTC": "2014-12-04 09:27:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-12-04 09:27:54", + "language": "tur", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + } + ] + }, + "Battlestar Galactica Razor (2007)/3b94ee6410d0490ebc8ab1eb5125bc81.mkv": { + "format": { + "bit_rate": "10966832", + "duration": "6222.678000", + "filename": "Battlestar Galactica Razor (2007)/3b94ee6410d0490ebc8ab1eb5125bc81.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8530383436", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-09-22T14:25:15.000000Z", + "encoder": "libebml v1.2.1 + libmatroska v1.1.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6222.678000", + "duration_ts": 6222678, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The 11Th Hour (2007)/The 11th Hour[2007]DvDrip AC3[Eng]-FXG.avi": { + "format": { + "bit_rate": "1023410", + "duration": "5673.520000", + "filename": "The 11Th Hour (2007)/The 11th Hour[2007]DvDrip AC3[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "725792768", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "833702", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 344, + "coded_width": 632, + "display_aspect_ratio": "79:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5673.520000", + "duration_ts": 141838, + "has_b_frames": 0, + "height": 344, + "index": 0, + "level": 1, + "nb_frames": "141838", + "pix_fmt": "yuv420p", + "profile": "Advanced Real Time Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 632 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "127862016", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Mr Deeds/Mr Deeds.avi": { + "format": { + "bit_rate": "1013391", + "duration": "5798.016000", + "filename": "Mr Deeds/Mr Deeds.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734457856", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "888739", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5798.006340", + "duration_ts": 139013, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "139013", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111944", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5798.016000", + "duration_ts": 241584, + "index": 1, + "nb_frames": "241584", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Heavy Metal 2000 (2000)/Heavy.Metal.2000.640.25fps.1019kbps.v5.WunDeeSee.avi": { + "format": { + "bit_rate": "1160629", + "duration": "5065.008000", + "filename": "Heavy Metal 2000 (2000)/Heavy.Metal.2000.640.25fps.1019kbps.v5.WunDeeSee.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734824448", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1019303", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5065.000000", + "duration_ts": 126625, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "126625", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128456", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5065.008000", + "duration_ts": 211042, + "index": 1, + "nb_frames": "211042", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Natural Born Killers/Natural.Born.Killers.1994.iNT.DVDRiP.x264.AAC-0xDEADBEEF.MKV": { + "format": { + "bit_rate": "857620", + "duration": "6844.565000", + "filename": "Natural Born Killers/Natural.Born.Killers.1994.iNT.DVDRiP.x264.AAC-0xDEADBEEF.MKV", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "733755060", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-07-23T07:47:42.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 352, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "height": 576, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + } + ] + }, + "Blade II/Blade 2.m4v": { + "format": { + "bit_rate": "2169656", + "duration": "6722.016000", + "filename": "Blade II/Blade 2.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1823058020", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-23T03:51:20.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "4200975/168049", + "bit_rate": "1552236", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "168049/8401950", + "codec_type": "video", + "coded_height": 560, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "513:280", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6721.960000", + "duration_ts": 604976400, + "has_b_frames": 1, + "height": 560, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "168039", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "100/1", + "refs": 1, + "sample_aspect_ratio": "57:40", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-23T03:51:20.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165214", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6722.005333", + "duration_ts": 322656256, + "index": 1, + "max_bit_rate": "258880", + "nb_frames": "315094", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-23T03:51:20.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6722.016000", + "duration_ts": 322656768, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "210063", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-23T03:51:20.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Django Unchained (2012)/Django.Unchained.2012.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1906830", + "duration": "9922.786667", + "filename": "Django Unchained (2012)/Django.Unchained.2012.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2365133823", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-26T12:09:32.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1806696", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9922.787875", + "duration_ts": 238146909, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "237909", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-03-26T12:09:32.000000Z", + "handler_name": "unchained.2012.1080p.bluray.x264-sparks.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96001", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9921.642667", + "duration_ts": 476238848, + "index": 1, + "max_bit_rate": "135912", + "nb_frames": "465077", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-26T07:10:36.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Fearless (2006)/chd-fearless-dc-dts-bdrip.mkv": { + "format": { + "bit_rate": "8068967", + "duration": "8446.464000", + "filename": "Fearless (2006)/chd-fearless-dc-dts-bdrip.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8519280755", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-10-23T04:12:17.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "CHD" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi" + }, + "time_base": "1/1000" + } + ] + }, + "Quantum Of Solace (2008)/Quantum of Solace[2008]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "921028", + "duration": "6373.498498", + "filename": "Quantum Of Solace (2008)/Quantum of Solace[2008]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733771776", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "799669", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 680, + "display_aspect_ratio": "5:2", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6373.498498", + "duration_ts": 152811, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "152811", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 680 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "89228800", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Star Trek 1 - The Motion Picture/Star.Trek.The.Motion.Picture.1979.720p.BRrip.x264.YIFY.mp4": { + "format": { + "bit_rate": "953481", + "duration": "7920.298333", + "filename": "Star Trek 1 - The Motion Picture/Star.Trek.The.Motion.Picture.1979.720p.BRrip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943981994", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-11-25T03:22:04.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "853936", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7920.203958", + "duration_ts": 760339580, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "189895", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 12012, + "start_time": "0.125125", + "tags": { + "creation_time": "2012-11-25T03:22:04.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95734", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7920.298667", + "duration_ts": 380174336, + "index": 1, + "max_bit_rate": "121104", + "nb_frames": "371264", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-25T03:22:13.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Minority Report/Minority_Report.avi": { + "format": { + "bit_rate": "702639", + "duration": "8355.880000", + "filename": "Minority Report/Minority_Report.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733896704", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "599332", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8355.880000", + "duration_ts": 208897, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "208897", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/32000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "232108", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "32000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "9/250" + } + ] + }, + "We Are Your Friends (2015)/We Are Your Friends 2015 1080p BluRay x264 DTS-JYK.mkv": { + "format": { + "bit_rate": "3606859", + "duration": "5763.339000", + "filename": "We Are Your Friends (2015)/We Are Your Friends 2015 1080p BluRay x264 DTS-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2598444328", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-12-12T03:20:32.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1036, + "coded_width": 1920, + "display_aspect_ratio": "480:259", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1036, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2850125", + "BPS-eng": "2850125", + "DURATION": "01:36:03.334000000", + "DURATION-eng": "01:36:03.334000000", + "NUMBER_OF_BYTES": "2053278230", + "NUMBER_OF_BYTES-eng": "2053278230", + "NUMBER_OF_FRAMES": "138320", + "NUMBER_OF_FRAMES-eng": "138320", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-12 03:20:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-12 03:20:32", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "754499", + "BPS-eng": "754499", + "DURATION": "01:36:03.339000000", + "DURATION-eng": "01:36:03.339000000", + "NUMBER_OF_BYTES": "543554878", + "NUMBER_OF_BYTES-eng": "543554878", + "NUMBER_OF_FRAMES": "540313", + "NUMBER_OF_FRAMES-eng": "540313", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.7.0 ('Six Voices') 32bit built on Feb 28 2015 23:23:00", + "_STATISTICS_WRITING_DATE_UTC": "2015-12-12 03:20:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2015-12-12 03:20:32", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Atomic Blonde (2017)/Atomic.Blonde.2017.1080p.WEB-DL.DD5.1.H264-FGT.mkv": { + "format": { + "bit_rate": "4916720", + "duration": "6884.426000", + "filename": "Atomic Blonde (2017)/Atomic.Blonde.2017.1080p.WEB-DL.DD5.1.H264-FGT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "4231099911", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-10-24T05:43:18.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Atomic.Blonde.2017.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "language": "eng", + "title": "Atomic.Blonde.2017.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Atomic.Blonde.2017.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6884.426000", + "duration_ts": 6884426, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6884.426000", + "duration_ts": 619598340, + "has_b_frames": 0, + "height": 176, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6884.426000", + "duration_ts": 619598340, + "has_b_frames": 0, + "height": 120, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6884.426000", + "duration_ts": 619598340, + "has_b_frames": 0, + "height": 882, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6884.426000", + "duration_ts": 619598340, + "has_b_frames": 0, + "height": 600, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Babel/Babel.avi": { + "format": { + "bit_rate": "878009", + "duration": "8610.985986", + "filename": "Babel/Babel.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "945065984", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "756702", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 560, + "display_aspect_ratio": "35:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8610.985986", + "duration_ts": 206457, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "206457", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 560 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "358791", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Marley & Me (2008)/Marley & Me[2008]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "846533", + "duration": "6934.017351", + "filename": "Marley & Me (2008)/Marley & Me[2008]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733734912", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "725173", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6934.017351", + "duration_ts": 166250, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "166250", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "97075977", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Lilo And Stitch (2002)/Lilo.and.Stitch.2002.1080p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "7341387", + "duration": "5114.567000", + "filename": "Lilo And Stitch (2002)/Lilo.and.Stitch.2002.1080p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4693502159", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1824, + "display_aspect_ratio": "76:45", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1824 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5114.567000", + "duration_ts": 5114567, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5114.567000", + "duration_ts": 5114567, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Avatar (2010)/AVATAR_EXTENDED_2010_1080p_BluRay_QEBS5_AAC51_PS3_MP4-FASM.mp4": { + "format": { + "bit_rate": "3336870", + "duration": "10291.948333", + "filename": "Avatar (2010)/AVATAR_EXTENDED_2010_1080p_BluRay_QEBS5_AAC51_PS3_MP4-FASM.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4292862420", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-08-23T18:27:53.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2927993", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 864, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "853:432", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10291.948333", + "duration_ts": 247006760, + "has_b_frames": 2, + "height": 864, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "246760", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "853:960", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-23T18:27:53.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "404980", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10291.008000", + "duration_ts": 493968384, + "index": 1, + "max_bit_rate": "451568", + "nb_frames": "482391", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-23T18:29:52.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Crossroads (1986)/crossroads.avi": { + "format": { + "bit_rate": "991238", + "duration": "5905.532967", + "filename": "Crossroads (1986)/crossroads.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731723776", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bit_rate": "819617", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x58564944", + "codec_tag_string": "DIVX", + "codec_time_base": "1001/30000", + "codec_type": "video", + "coded_height": 472, + "coded_width": 640, + "display_aspect_ratio": "80:59", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5905.532967", + "duration_ts": 176989, + "has_b_frames": 1, + "height": 472, + "index": 0, + "level": -99, + "nb_frames": "176989", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/30000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159864", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "118009584", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/19983" + } + ] + }, + "Coco (2017)/Coco.2017.MULTi.720p.BluRay.x265-TTBK.mkv": { + "format": { + "bit_rate": "6317601", + "duration": "6302.006000", + "filename": "Coco (2017)/Coco.2017.MULTi.720p.BluRay.x265-TTBK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "4976695508", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-29T17:30:06.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "Coco.2017.MULTi.REMUX.1080p.BluRay.HEVC.DTS-HD.MA.7.1-TTBK_1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 736, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 0, + "height": 720, + "index": 0, + "level": 93, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2245540", + "BPS-eng": "2245540", + "DURATION": "01:45:00.294000000", + "DURATION-eng": "01:45:00.294000000", + "NUMBER_OF_BYTES": "1768445766", + "NUMBER_OF_BYTES-eng": "1768445766", + "NUMBER_OF_FRAMES": "151056", + "NUMBER_OF_FRAMES-eng": "151056", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_APP-eng": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-29 17:30:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-29 17:30:06" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:45:02.006000000", + "DURATION-eng": "01:45:02.006000000", + "NUMBER_OF_BYTES": "1188715756", + "NUMBER_OF_BYTES-eng": "1188715756", + "NUMBER_OF_FRAMES": "590813", + "NUMBER_OF_FRAMES-eng": "590813", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_APP-eng": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-29 17:30:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-29 17:30:06", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:45:01.952000000", + "DURATION-eng": "01:45:01.952000000", + "NUMBER_OF_BYTES": "504156160", + "NUMBER_OF_BYTES-eng": "504156160", + "NUMBER_OF_FRAMES": "196936", + "NUMBER_OF_FRAMES-eng": "196936", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_APP-eng": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-29 17:30:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-29 17:30:06", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:45:01.952000000", + "DURATION-eng": "01:45:01.952000000", + "NUMBER_OF_BYTES": "504156160", + "NUMBER_OF_BYTES-eng": "504156160", + "NUMBER_OF_FRAMES": "196936", + "NUMBER_OF_FRAMES-eng": "196936", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_APP-eng": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-29 17:30:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-29 17:30:06", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 4, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:45:01.952000000", + "DURATION-eng": "01:45:01.952000000", + "NUMBER_OF_BYTES": "504156160", + "NUMBER_OF_BYTES-eng": "504156160", + "NUMBER_OF_FRAMES": "196936", + "NUMBER_OF_FRAMES-eng": "196936", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_APP-eng": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-29 17:30:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-29 17:30:06", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 5, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:45:01.984000000", + "DURATION-eng": "01:45:01.984000000", + "NUMBER_OF_BYTES": "504158720", + "NUMBER_OF_BYTES-eng": "504158720", + "NUMBER_OF_FRAMES": "196937", + "NUMBER_OF_FRAMES-eng": "196937", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_APP-eng": "DVDFab 10.0.9.5", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-29 17:30:06", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-29 17:30:06", + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "The Postman (1997)/The.Postman.1997.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "976327", + "duration": "10669.760000", + "filename": "The Postman (1997)/The.Postman.1997.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1302147281", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-04-08T01:14:30.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64520", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10669.760000", + "duration_ts": 512148480, + "index": 0, + "max_bit_rate": "102520", + "nb_frames": "500145", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-04-08T01:14:30.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "907667", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10669.700708", + "duration_ts": 256072817, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "255817", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-04-08T01:14:35.000000Z", + "handler_name": "The.Postman.1997.BluRay.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Black Panther (2018)/Black Panther 2018 1080p BRRip 6CH MkvCage.Com.mkv": { + "format": { + "bit_rate": "2793459", + "duration": "8073.162000", + "filename": "Black Panther (2018)/Black Panther 2018 1080p BRRip 6CH MkvCage.Com.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2819006116", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-05-02T12:35:18.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Black.Panther.2018.1080p.BRRip.6C.MkvCage.Com" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS-eng": "191789", + "DURATION-eng": "02:14:33.131000000", + "NUMBER_OF_BYTES-eng": "193542270", + "NUMBER_OF_FRAMES-eng": "189214", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-02 12:35:18", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2599676", + "DURATION-eng": "02:14:33.149000000", + "NUMBER_OF_BYTES-eng": "2623446865", + "NUMBER_OF_FRAMES-eng": "193562", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-02 12:35:18" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8073.162000", + "duration_ts": 8073162, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1", + "DURATION-eng": "02:10:25.193000000", + "NUMBER_OF_BYTES-eng": "1173", + "NUMBER_OF_FRAMES-eng": "68", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-02 12:35:18", + "language": "eng", + "title": "English Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8073.162000", + "duration_ts": 8073162, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "02:14:09.970000000", + "NUMBER_OF_BYTES-eng": "42651", + "NUMBER_OF_FRAMES-eng": "1586", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-02 12:35:18", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Zero Days (2016)/Zero.Days.2016.720p.WEBRip.x264.AAC-ETRG.mp4": { + "format": { + "bit_rate": "1099414", + "duration": "6826.921667", + "filename": "Zero Days (2016)/Zero.Days.2016.720p.WEBRip.x264.AAC-ETRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "938202303", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2016-07-09T16:00:10.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "999348", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6826.651667", + "duration_ts": 163839640, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "163676", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-07-09T15:59:21.000000Z", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95970", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6826.921667", + "duration_ts": 327692240, + "index": 1, + "max_bit_rate": "142992", + "nb_frames": "320013", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "An Inconvenient Truth/An Inconvenient Truth (2006) DVD-rip.divx.avi.avi": { + "format": { + "bit_rate": "1012476", + "duration": "5798.048048", + "filename": "An Inconvenient Truth/An Inconvenient Truth (2006) DVD-rip.divx.avi.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733798400", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "810974", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 544, + "display_aspect_ratio": "34:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5798.048048", + "duration_ts": 139014, + "has_b_frames": 0, + "height": 304, + "index": 0, + "level": 0, + "nb_frames": "139014", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 544 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "139152384", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Mars Attacks (1996)/Mars Attacks.mp4": { + "format": { + "bit_rate": "3813767", + "duration": "6345.386667", + "filename": "Mars Attacks (1996)/Mars Attacks.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3024978401", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2010-09-21T22:47:00.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "3492869", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1916, + "display_aspect_ratio": "479:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6345.380708", + "duration_ts": 152289137, + "has_b_frames": 1, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "152137", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2010-09-21T22:47:00.000000Z", + "handler_name": "Mars Attacks", + "language": "und" + }, + "time_base": "1/24000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "317375", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6345.386667", + "duration_ts": 304578560, + "index": 1, + "max_bit_rate": "333296", + "nb_frames": "297440", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-09-21T22:49:51.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (internal rev. 5)", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Jenny Slate Stage Fright (2019)/5923f010dc214ebb929f2fec6a54fd90.mkv": { + "format": { + "bit_rate": "3928693", + "duration": "3991.712000", + "filename": "Jenny Slate Stage Fright (2019)/5923f010dc214ebb929f2fec6a54fd90.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 19, + "probe_score": 100, + "size": "1960276653", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-10-22T17:57:11.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 674, + "coded_width": 1280, + "display_aspect_ratio": "640:337", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 674, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger", + "title": "German" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ind", + "title": "Indonesian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur", + "title": "Turkish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hun", + "title": "Hungarian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa", + "title": "European Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rus", + "title": "Russian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "cze", + "title": "Czech" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3991.712000", + "duration_ts": 3991712, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + } + ] + }, + "Attack On Titan: Part 1 (2015)/Attack.on.Titan.2015.PART.1.BluRay.720p.Ganool.mp4": { + "format": { + "bit_rate": "1209727", + "duration": "5913.848000", + "filename": "Attack On Titan: Part 1 (2015)/Attack.on.Titan.2015.PART.1.BluRay.720p.Ganool.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "894267835", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "encoder": "Lavf57.3.100", + "major_brand": "isom", + "minor_version": "512" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1139026", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5913.825000", + "duration_ts": 141931800, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "141790", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "68:67", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "64559", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5913.823991", + "duration_ts": 260799638, + "index": 1, + "max_bit_rate": "64559", + "nb_frames": "254689", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SoundHandler", + "language": "und" + }, + "time_base": "1/44100" + } + ] + }, + "Blade Runner 2049 (2017)/Blade Runner 2049 2017 1080pWEB-DL 6CH x265 HEVC-PSA.mkv": { + "format": { + "bit_rate": "1664505", + "duration": "9806.630000", + "filename": "Blade Runner 2049 (2017)/Blade Runner 2049 2017 1080pWEB-DL 6CH x265 HEVC-PSA.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2040398561", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-28T21:51:38.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "PSArips.com | Blade.Runner.2049.2017.1080p.WEB-DL.6CH.x265.HEVC-PSA" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "480:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 796, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1453902", + "BPS-eng": "1453902", + "DURATION": "02:43:26.630000000", + "DURATION-eng": "02:43:26.630000000", + "NUMBER_OF_BYTES": "1782235044", + "NUMBER_OF_BYTES-eng": "1782235044", + "NUMBER_OF_FRAMES": "235124", + "NUMBER_OF_FRAMES-eng": "235124", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-28 21:51:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-28 21:51:38" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 23, + "start_time": "0.023000", + "tags": { + "BPS": "208697", + "BPS-eng": "208697", + "DURATION": "02:43:26.550000000", + "DURATION-eng": "02:43:26.550000000", + "NUMBER_OF_BYTES": "255825351", + "NUMBER_OF_BYTES-eng": "255825351", + "NUMBER_OF_FRAMES": "229841", + "NUMBER_OF_FRAMES-eng": "229841", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-28 21:51:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-28 21:51:38" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9806.630000", + "duration_ts": 9806630, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "24", + "BPS-eng": "24", + "DURATION": "02:27:06.428000000", + "DURATION-eng": "02:27:06.428000000", + "NUMBER_OF_BYTES": "27321", + "NUMBER_OF_BYTES-eng": "27321", + "NUMBER_OF_FRAMES": "975", + "NUMBER_OF_FRAMES-eng": "975", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v19.0.0 ('Brave Captain') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-28 21:51:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-28 21:51:38", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Ted 2 (2015)/Ted.2.2015.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1143982", + "duration": "6932.286667", + "filename": "Ted 2 (2015)/Ted.2.2015.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "991302190", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2015-11-17T10:33:58.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64435", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6932.288000", + "duration_ts": 332749824, + "index": 0, + "max_bit_rate": "91720", + "nb_frames": "324951", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-11-17T10:33:58.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1075620", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6932.216958", + "duration_ts": 166373207, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "166207", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-11-17T10:34:04.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Dark City (1998)/Dark.City.1998.Directors.Cut.720p.BluRay.x264-SiNNERS.mkv": { + "format": { + "bit_rate": "5601794", + "duration": "6703.744000", + "filename": "Dark City (1998)/Dark.City.1998.Directors.Cut.720p.BluRay.x264-SiNNERS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4694124602", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-07-29T23:06:02.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6703.744000", + "duration_ts": 6703744, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Colossal (2017)/colossal.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4261746", + "duration": "6286.176000", + "filename": "Colossal (2017)/colossal.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3348761126", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-26T06:50:31.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "25/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 536, + "coded_width": 960, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 536, + "index": 1, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "4:3", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 960 + } + ] + }, + "Dream Big Engineering Our World (2017)/349ebc62b64f4e7785d2042115751748.mkv": { + "format": { + "bit_rate": "7516605", + "duration": "2533.280000", + "filename": "Dream Big Engineering Our World (2017)/349ebc62b64f4e7785d2042115751748.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 28, + "probe_score": 100, + "size": "2380208446", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-07-08T18:41:59.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7128548", + "BPS-eng": "7128548", + "DURATION": "00:42:12.917000000", + "DURATION-eng": "00:42:12.917000000", + "NUMBER_OF_BYTES": "2257002683", + "NUMBER_OF_BYTES-eng": "2257002683", + "NUMBER_OF_FRAMES": "60790", + "NUMBER_OF_FRAMES-eng": "60790", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "00:42:13.280000000", + "DURATION-eng": "00:42:13.280000000", + "NUMBER_OF_BYTES": "121597440", + "NUMBER_OF_BYTES-eng": "121597440", + "NUMBER_OF_FRAMES": "79165", + "NUMBER_OF_FRAMES-eng": "79165", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "62", + "BPS-eng": "62", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "19299", + "NUMBER_OF_BYTES-eng": "19299", + "NUMBER_OF_FRAMES": "420", + "NUMBER_OF_FRAMES-eng": "420", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "69", + "BPS-eng": "69", + "DURATION": "00:41:05.292000000", + "DURATION-eng": "00:41:05.292000000", + "NUMBER_OF_BYTES": "21479", + "NUMBER_OF_BYTES-eng": "21479", + "NUMBER_OF_FRAMES": "476", + "NUMBER_OF_FRAMES-eng": "476", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "102", + "BPS-eng": "102", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "31277", + "NUMBER_OF_BYTES-eng": "31277", + "NUMBER_OF_FRAMES": "511", + "NUMBER_OF_FRAMES-eng": "511", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "106", + "BPS-eng": "106", + "DURATION": "00:40:48.167000000", + "DURATION-eng": "00:40:48.167000000", + "NUMBER_OF_BYTES": "32735", + "NUMBER_OF_BYTES-eng": "32735", + "NUMBER_OF_FRAMES": "419", + "NUMBER_OF_FRAMES-eng": "419", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "52", + "BPS-eng": "52", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "16130", + "NUMBER_OF_BYTES-eng": "16130", + "NUMBER_OF_FRAMES": "423", + "NUMBER_OF_FRAMES-eng": "423", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "00:40:53.000000000", + "DURATION-eng": "00:40:53.000000000", + "NUMBER_OF_BYTES": "17752", + "NUMBER_OF_BYTES-eng": "17752", + "NUMBER_OF_FRAMES": "434", + "NUMBER_OF_FRAMES-eng": "434", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "102", + "BPS-eng": "102", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "31347", + "NUMBER_OF_BYTES-eng": "31347", + "NUMBER_OF_FRAMES": "432", + "NUMBER_OF_FRAMES-eng": "432", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "20513", + "NUMBER_OF_BYTES-eng": "20513", + "NUMBER_OF_FRAMES": "427", + "NUMBER_OF_FRAMES-eng": "427", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "20523", + "NUMBER_OF_BYTES-eng": "20523", + "NUMBER_OF_FRAMES": "434", + "NUMBER_OF_FRAMES-eng": "434", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "16482", + "NUMBER_OF_BYTES-eng": "16482", + "NUMBER_OF_FRAMES": "426", + "NUMBER_OF_FRAMES-eng": "426", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "17719", + "NUMBER_OF_BYTES-eng": "17719", + "NUMBER_OF_FRAMES": "428", + "NUMBER_OF_FRAMES-eng": "428", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "25319", + "NUMBER_OF_BYTES-eng": "25319", + "NUMBER_OF_FRAMES": "437", + "NUMBER_OF_FRAMES-eng": "437", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "69", + "BPS-eng": "69", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "21170", + "NUMBER_OF_BYTES-eng": "21170", + "NUMBER_OF_FRAMES": "431", + "NUMBER_OF_FRAMES-eng": "431", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "00:40:53.583000000", + "DURATION-eng": "00:40:53.583000000", + "NUMBER_OF_BYTES": "17023", + "NUMBER_OF_BYTES-eng": "17023", + "NUMBER_OF_FRAMES": "376", + "NUMBER_OF_FRAMES-eng": "376", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "61", + "BPS-eng": "61", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "18810", + "NUMBER_OF_BYTES-eng": "18810", + "NUMBER_OF_FRAMES": "440", + "NUMBER_OF_FRAMES-eng": "440", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "15440", + "NUMBER_OF_BYTES-eng": "15440", + "NUMBER_OF_FRAMES": "425", + "NUMBER_OF_FRAMES-eng": "425", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "55", + "BPS-eng": "55", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "16914", + "NUMBER_OF_BYTES-eng": "16914", + "NUMBER_OF_FRAMES": "416", + "NUMBER_OF_FRAMES-eng": "416", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "64", + "BPS-eng": "64", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "19926", + "NUMBER_OF_BYTES-eng": "19926", + "NUMBER_OF_FRAMES": "423", + "NUMBER_OF_FRAMES-eng": "423", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "68", + "BPS-eng": "68", + "DURATION": "00:40:53.000000000", + "DURATION-eng": "00:40:53.000000000", + "NUMBER_OF_BYTES": "20976", + "NUMBER_OF_BYTES-eng": "20976", + "NUMBER_OF_FRAMES": "428", + "NUMBER_OF_FRAMES-eng": "428", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "67", + "BPS-eng": "67", + "DURATION": "00:40:53.125000000", + "DURATION-eng": "00:40:53.125000000", + "NUMBER_OF_BYTES": "20547", + "NUMBER_OF_BYTES-eng": "20547", + "NUMBER_OF_FRAMES": "426", + "NUMBER_OF_FRAMES-eng": "426", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "66", + "BPS-eng": "66", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "20413", + "NUMBER_OF_BYTES-eng": "20413", + "NUMBER_OF_FRAMES": "431", + "NUMBER_OF_FRAMES-eng": "431", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "19592", + "NUMBER_OF_BYTES-eng": "19592", + "NUMBER_OF_FRAMES": "425", + "NUMBER_OF_FRAMES-eng": "425", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "153", + "BPS-eng": "153", + "DURATION": "00:40:52.958000000", + "DURATION-eng": "00:40:52.958000000", + "NUMBER_OF_BYTES": "47045", + "NUMBER_OF_BYTES-eng": "47045", + "NUMBER_OF_FRAMES": "523", + "NUMBER_OF_FRAMES-eng": "523", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "68", + "BPS-eng": "68", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "20976", + "NUMBER_OF_BYTES-eng": "20976", + "NUMBER_OF_FRAMES": "430", + "NUMBER_OF_FRAMES-eng": "430", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "46", + "BPS-eng": "46", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "14233", + "NUMBER_OF_BYTES-eng": "14233", + "NUMBER_OF_FRAMES": "434", + "NUMBER_OF_FRAMES-eng": "434", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2533.280000", + "duration_ts": 2533280, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "00:40:53.042000000", + "DURATION-eng": "00:40:53.042000000", + "NUMBER_OF_BYTES": "14572", + "NUMBER_OF_BYTES-eng": "14572", + "NUMBER_OF_FRAMES": "429", + "NUMBER_OF_FRAMES-eng": "429", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-07-08 18:41:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-07-08 18:41:59", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Between Two Ferns The Movie (2019)/9533dfeb750241b794aa79d0eb7643ca.mkv": { + "format": { + "bit_rate": "5479957", + "duration": "4966.688000", + "filename": "Between Two Ferns The Movie (2019)/9533dfeb750241b794aa79d0eb7643ca.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 33, + "probe_score": 100, + "size": "3402155161", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-20T07:03:57.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "CMRG" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4831980", + "BPS-eng": "4831980", + "DURATION": "01:22:46.375000000", + "DURATION-eng": "01:22:46.375000000", + "NUMBER_OF_BYTES": "2999678578", + "NUMBER_OF_BYTES-eng": "2999678578", + "NUMBER_OF_FRAMES": "119193", + "NUMBER_OF_FRAMES-eng": "119193", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:22:46.688000000", + "DURATION-eng": "01:22:46.688000000", + "NUMBER_OF_BYTES": "397335040", + "NUMBER_OF_BYTES-eng": "397335040", + "NUMBER_OF_FRAMES": "155209", + "NUMBER_OF_FRAMES-eng": "155209", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "95", + "BPS-eng": "95", + "DURATION": "01:21:41.958000000", + "DURATION-eng": "01:21:41.958000000", + "NUMBER_OF_BYTES": "58734", + "NUMBER_OF_BYTES-eng": "58734", + "NUMBER_OF_FRAMES": "1852", + "NUMBER_OF_FRAMES-eng": "1852", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "103", + "BPS-eng": "103", + "DURATION": "01:21:43.583000000", + "DURATION-eng": "01:21:43.583000000", + "NUMBER_OF_BYTES": "63389", + "NUMBER_OF_BYTES-eng": "63389", + "NUMBER_OF_FRAMES": "2001", + "NUMBER_OF_FRAMES-eng": "2001", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "73", + "BPS-eng": "73", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "44760", + "NUMBER_OF_BYTES-eng": "44760", + "NUMBER_OF_FRAMES": "1686", + "NUMBER_OF_FRAMES-eng": "1686", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "spa", + "title": "Castilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "88", + "BPS-eng": "88", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "54327", + "NUMBER_OF_BYTES-eng": "54327", + "NUMBER_OF_FRAMES": "1706", + "NUMBER_OF_FRAMES-eng": "1706", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "50526", + "NUMBER_OF_BYTES-eng": "50526", + "NUMBER_OF_FRAMES": "1776", + "NUMBER_OF_FRAMES-eng": "1776", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "50773", + "NUMBER_OF_BYTES-eng": "50773", + "NUMBER_OF_FRAMES": "1722", + "NUMBER_OF_FRAMES-eng": "1722", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "ger", + "title": "German" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "51287", + "NUMBER_OF_BYTES-eng": "51287", + "NUMBER_OF_FRAMES": "1802", + "NUMBER_OF_FRAMES-eng": "1802", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "49108", + "NUMBER_OF_BYTES-eng": "49108", + "NUMBER_OF_FRAMES": "1731", + "NUMBER_OF_FRAMES-eng": "1731", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "por", + "title": "Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:21:42.125000000", + "DURATION-eng": "01:21:42.125000000", + "NUMBER_OF_BYTES": "49225", + "NUMBER_OF_BYTES-eng": "49225", + "NUMBER_OF_FRAMES": "1629", + "NUMBER_OF_FRAMES-eng": "1629", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "por", + "title": "Brazilian Portuguese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "70", + "BPS-eng": "70", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "43246", + "NUMBER_OF_BYTES-eng": "43246", + "NUMBER_OF_FRAMES": "1717", + "NUMBER_OF_FRAMES-eng": "1717", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "pol", + "title": "Polish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "81", + "BPS-eng": "81", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "50025", + "NUMBER_OF_BYTES-eng": "50025", + "NUMBER_OF_FRAMES": "1749", + "NUMBER_OF_FRAMES-eng": "1749", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "tur", + "title": "Turkish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "75", + "BPS-eng": "75", + "DURATION": "01:21:43.792000000", + "DURATION-eng": "01:21:43.792000000", + "NUMBER_OF_BYTES": "46224", + "NUMBER_OF_BYTES-eng": "46224", + "NUMBER_OF_FRAMES": "1218", + "NUMBER_OF_FRAMES-eng": "1218", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "01:21:46.041000000", + "DURATION-eng": "01:21:46.041000000", + "NUMBER_OF_BYTES": "49327", + "NUMBER_OF_BYTES-eng": "49327", + "NUMBER_OF_FRAMES": "1615", + "NUMBER_OF_FRAMES-eng": "1615", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "dan", + "title": "Danish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "44164", + "NUMBER_OF_BYTES-eng": "44164", + "NUMBER_OF_FRAMES": "1080", + "NUMBER_OF_FRAMES-eng": "1080", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "75", + "BPS-eng": "75", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "46280", + "NUMBER_OF_BYTES-eng": "46280", + "NUMBER_OF_FRAMES": "1404", + "NUMBER_OF_FRAMES-eng": "1404", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:21:44.459000000", + "DURATION-eng": "01:21:44.459000000", + "NUMBER_OF_BYTES": "48026", + "NUMBER_OF_BYTES-eng": "48026", + "NUMBER_OF_FRAMES": "1728", + "NUMBER_OF_FRAMES-eng": "1728", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "116", + "BPS-eng": "116", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "71454", + "NUMBER_OF_BYTES-eng": "71454", + "NUMBER_OF_FRAMES": "1721", + "NUMBER_OF_FRAMES-eng": "1721", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "rus", + "title": "Russian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "76", + "BPS-eng": "76", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "46874", + "NUMBER_OF_BYTES-eng": "46874", + "NUMBER_OF_FRAMES": "1809", + "NUMBER_OF_FRAMES-eng": "1809", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "hun", + "title": "Hungarian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "127", + "BPS-eng": "127", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "78427", + "NUMBER_OF_BYTES-eng": "78427", + "NUMBER_OF_FRAMES": "1674", + "NUMBER_OF_FRAMES-eng": "1674", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "gre", + "title": "Greek" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "130", + "BPS-eng": "130", + "DURATION": "01:21:43.458000000", + "DURATION-eng": "01:21:43.458000000", + "NUMBER_OF_BYTES": "80042", + "NUMBER_OF_BYTES-eng": "80042", + "NUMBER_OF_FRAMES": "1706", + "NUMBER_OF_FRAMES-eng": "1706", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "heb", + "title": "Hebrew" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "139", + "BPS-eng": "139", + "DURATION": "01:21:30.917000000", + "DURATION-eng": "01:21:30.917000000", + "NUMBER_OF_BYTES": "85573", + "NUMBER_OF_BYTES-eng": "85573", + "NUMBER_OF_FRAMES": "1795", + "NUMBER_OF_FRAMES-eng": "1795", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "ara", + "title": "Arabic" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "96", + "BPS-eng": "96", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "59285", + "NUMBER_OF_BYTES-eng": "59285", + "NUMBER_OF_FRAMES": "1776", + "NUMBER_OF_FRAMES-eng": "1776", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "rum", + "title": "Romanian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "72", + "BPS-eng": "72", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "44755", + "NUMBER_OF_BYTES-eng": "44755", + "NUMBER_OF_FRAMES": "1746", + "NUMBER_OF_FRAMES-eng": "1746", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "cze", + "title": "Czech" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "237", + "BPS-eng": "237", + "DURATION": "01:21:31.375000000", + "DURATION-eng": "01:21:31.375000000", + "NUMBER_OF_BYTES": "145470", + "NUMBER_OF_BYTES-eng": "145470", + "NUMBER_OF_FRAMES": "1804", + "NUMBER_OF_FRAMES-eng": "1804", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "hin", + "title": "Hindi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "71", + "BPS-eng": "71", + "DURATION": "01:21:44.375000000", + "DURATION-eng": "01:21:44.375000000", + "NUMBER_OF_BYTES": "43529", + "NUMBER_OF_BYTES-eng": "43529", + "NUMBER_OF_FRAMES": "1709", + "NUMBER_OF_FRAMES-eng": "1709", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "ind", + "title": "Indonesian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "115", + "BPS-eng": "115", + "DURATION": "01:21:32.833000000", + "DURATION-eng": "01:21:32.833000000", + "NUMBER_OF_BYTES": "70645", + "NUMBER_OF_BYTES-eng": "70645", + "NUMBER_OF_FRAMES": "1655", + "NUMBER_OF_FRAMES-eng": "1655", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "vie", + "title": "Vietnamese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "244", + "BPS-eng": "244", + "DURATION": "01:21:44.500000000", + "DURATION-eng": "01:21:44.500000000", + "NUMBER_OF_BYTES": "150102", + "NUMBER_OF_BYTES-eng": "150102", + "NUMBER_OF_FRAMES": "1788", + "NUMBER_OF_FRAMES-eng": "1788", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "tha", + "title": "Thai" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "115", + "BPS-eng": "115", + "DURATION": "01:21:31.000000000", + "DURATION-eng": "01:21:31.000000000", + "NUMBER_OF_BYTES": "70769", + "NUMBER_OF_BYTES-eng": "70769", + "NUMBER_OF_FRAMES": "1806", + "NUMBER_OF_FRAMES-eng": "1806", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "kor", + "title": "Korean" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "92", + "BPS-eng": "92", + "DURATION": "01:21:30.917000000", + "DURATION-eng": "01:21:30.917000000", + "NUMBER_OF_BYTES": "56704", + "NUMBER_OF_BYTES-eng": "56704", + "NUMBER_OF_FRAMES": "1807", + "NUMBER_OF_FRAMES-eng": "1807", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "chi", + "title": "Chinese (Simplified)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:21:30.917000000", + "DURATION-eng": "01:21:30.917000000", + "NUMBER_OF_BYTES": "50240", + "NUMBER_OF_BYTES-eng": "50240", + "NUMBER_OF_FRAMES": "1786", + "NUMBER_OF_FRAMES-eng": "1786", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "chi", + "title": "Chinese (Traditional)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4966.688000", + "duration_ts": 4966688, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "87", + "BPS-eng": "87", + "DURATION": "01:21:46.000000000", + "DURATION-eng": "01:21:46.000000000", + "NUMBER_OF_BYTES": "53822", + "NUMBER_OF_BYTES-eng": "53822", + "NUMBER_OF_FRAMES": "1689", + "NUMBER_OF_FRAMES-eng": "1689", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-09-20 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-20 07:03:57", + "language": "jpn", + "title": "Japanese" + }, + "time_base": "1/1000" + } + ] + }, + "Blue Velvet/Blue Velvet.avi": { + "format": { + "bit_rate": "809296", + "duration": "7222.255589", + "filename": "Blue Velvet/Blue Velvet.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "730617856", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "707025", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7222.255589", + "duration_ts": 216451, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "216451", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "86663808", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/12000" + } + ] + }, + "Jane Eyre (2011)/e4c884936204456db90d9ed3bd0caef6.720p.mkv": { + "format": { + "bit_rate": "7972378", + "duration": "7210.665000", + "filename": "Jane Eyre (2011)/e4c884936204456db90d9ed3bd0caef6.720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "7185768708", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32398118", + "DURATION": "02:00:10.662000000", + "DURATION-eng": "02:00:10.662000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES-eng": "29201485633", + "NUMBER_OF_FRAMES-eng": "172883", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "3723900", + "DURATION": "02:00:10.665000000", + "DURATION-eng": "02:00:10.667000000", + "NUMBER_OF_BYTES-eng": "3356476124", + "NUMBER_OF_FRAMES-eng": "676000", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7210.665000", + "duration_ts": 7210665, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31203", + "DURATION": "01:54:14.890000000", + "DURATION-eng": "01:53:17.541000000", + "NUMBER_OF_BYTES-eng": "26513511", + "NUMBER_OF_FRAMES-eng": "2622", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7210.665000", + "duration_ts": 7210665, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "21899", + "DURATION": "01:54:02.085000000", + "DURATION-eng": "01:53:10.867000000", + "NUMBER_OF_BYTES-eng": "18589190", + "NUMBER_OF_FRAMES-eng": "2464", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7210.665000", + "duration_ts": 7210665, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24634", + "DURATION": "01:54:02.085000000", + "DURATION-eng": "01:53:10.867000000", + "NUMBER_OF_BYTES-eng": "20911300", + "NUMBER_OF_FRAMES-eng": "2464", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7210.665000", + "duration_ts": 7210665, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38869", + "DURATION": "01:54:02.085000000", + "DURATION-eng": "01:53:10.867000000", + "NUMBER_OF_BYTES-eng": "32994662", + "NUMBER_OF_FRAMES-eng": "2464", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7210.665000", + "duration_ts": 7210665, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40603", + "DURATION": "01:54:02.085000000", + "DURATION-eng": "01:53:10.867000000", + "NUMBER_OF_BYTES-eng": "34466971", + "NUMBER_OF_FRAMES-eng": "2464", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-22 03:44:53", + "language": "chi" + }, + "time_base": "1/1000" + } + ] + }, + "Paprika (2006)/Paprika_(2006)_[720p,BluRay,x264]_-_THORA.mkv": { + "format": { + "bit_rate": "3443864", + "duration": "5432.386000", + "filename": "Paprika (2006)/Paprika_(2006)_[720p,BluRay,x264]_-_THORA.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "2338549942", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-06-08T21:15:08.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Paprika (2006)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5432.386000", + "duration_ts": 5432386, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5432.386000", + "duration_ts": 488914740, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Clearly_Gothic_Heavy.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5432.386000", + "duration_ts": 488914740, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Clearly_Gothic_Heavy_Italic.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5432.386000", + "duration_ts": 488914740, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "epilog.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5432.386000", + "duration_ts": 488914740, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "TCCEB.TTF", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Howl's Moving Castle (2004)/Howl's Moving Castle[2004]DvDrip Tri Audio[Eng Jap Fre]AC3 5.1[DXO].avi": { + "format": { + "bit_rate": "2040445", + "duration": "7149.094578", + "filename": "Howl's Moving Castle (2004)/Howl's Moving Castle[2004]DvDrip Tri Audio[Eng Jap Fre]AC3 5.1[DXO].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1823416900", + "start_time": "0.000000", + "tags": { + "JUNK": "", + "encoder": "AVI-Mux GUI 1.17.8, Aug 30 2008 12:36:58A", + "title": "Howl's Moving Castle (Hauru no ugoku shiro)" + } + }, + "streams": [ + { + "avg_frame_rate": "10000000/417083", + "bit_rate": "1006979", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "417083/10000000", + "codec_type": "video", + "coded_height": 360, + "coded_width": 640, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7149.094578", + "duration_ts": 171407, + "has_b_frames": 1, + "height": 360, + "index": 0, + "level": 5, + "nb_frames": "171407", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "417083/10000000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "400350720", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Japanese 5.1" + }, + "time_base": "1/56000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "343157760", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "English 5.1" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "171578880", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "French 2.0" + }, + "time_base": "1/24000" + } + ] + }, + "Zack And Miri Make A Porno (2008)/Zack.And.Miri.Make.A.Porno[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "965683", + "duration": "6093.468468", + "filename": "Zack And Miri Make A Porno (2008)/Zack.And.Miri.Make.A.Porno[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735545344", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "844381", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 346, + "coded_width": 636, + "display_aspect_ratio": "318:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6093.468468", + "duration_ts": 146097, + "has_b_frames": 1, + "height": 346, + "index": 0, + "level": 5, + "nb_frames": "146097", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 636 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "253882", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Addams Family Values/Addams Family Values (1993) Divx.avi": { + "format": { + "bit_rate": "917851", + "duration": "5644.978312", + "filename": "Addams Family Values/Addams Family Values (1993) Divx.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "647656448", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "780495", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 512, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5644.978312", + "duration_ts": 135344, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "135344", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "90319177", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio Stream" + }, + "time_base": "1/16000" + } + ] + }, + "Star Trek 7 - Generations/Star Trek 07 Generations 1994 1280x544.mp4": { + "format": { + "bit_rate": "2247644", + "duration": "7079.466667", + "filename": "Star Trek 7 - Generations/Star Trek 07 Generations 1994 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1989015961", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-10T16:24:19.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1987340", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7079.405667", + "duration_ts": 637146510, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "169736", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-10T16:24:19.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255836", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7079.466667", + "duration_ts": 339814400, + "index": 1, + "max_bit_rate": "334760", + "nb_frames": "331850", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-10T16:24:19.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Ready Player One (2018)/c396c5d3706644b29bbdebe6c8512c61.mkv": { + "format": { + "bit_rate": "4970116", + "duration": "8395.680000", + "filename": "Ready Player One (2018)/c396c5d3706644b29bbdebe6c8512c61.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 24, + "probe_score": 100, + "size": "5215938946", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-17T13:35:03.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "02:18:53.875000000", + "DURATION-eng": "02:18:53.875000000", + "NUMBER_OF_BYTES": "52551", + "NUMBER_OF_BYTES-eng": "52551", + "NUMBER_OF_FRAMES": "1644", + "NUMBER_OF_FRAMES-eng": "1644", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 1, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "45", + "BPS-eng": "45", + "DURATION": "02:18:55.001000000", + "DURATION-eng": "02:18:55.001000000", + "NUMBER_OF_BYTES": "47635", + "NUMBER_OF_BYTES-eng": "47635", + "NUMBER_OF_FRAMES": "1599", + "NUMBER_OF_FRAMES-eng": "1599", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "62", + "BPS-eng": "62", + "DURATION": "02:07:55.634000000", + "DURATION-eng": "02:07:55.634000000", + "NUMBER_OF_BYTES": "59975", + "NUMBER_OF_BYTES-eng": "59975", + "NUMBER_OF_FRAMES": "1607", + "NUMBER_OF_FRAMES-eng": "1607", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "86", + "BPS-eng": "86", + "DURATION": "02:18:56.503000000", + "DURATION-eng": "02:18:56.503000000", + "NUMBER_OF_BYTES": "90094", + "NUMBER_OF_BYTES-eng": "90094", + "NUMBER_OF_FRAMES": "1592", + "NUMBER_OF_FRAMES-eng": "1592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "73", + "BPS-eng": "73", + "DURATION": "02:18:56.503000000", + "DURATION-eng": "02:18:56.503000000", + "NUMBER_OF_BYTES": "76505", + "NUMBER_OF_BYTES-eng": "76505", + "NUMBER_OF_FRAMES": "1622", + "NUMBER_OF_FRAMES-eng": "1622", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "46", + "BPS-eng": "46", + "DURATION": "02:18:54.293000000", + "DURATION-eng": "02:18:54.293000000", + "NUMBER_OF_BYTES": "48063", + "NUMBER_OF_BYTES-eng": "48063", + "NUMBER_OF_FRAMES": "1268", + "NUMBER_OF_FRAMES-eng": "1268", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "02:08:20.659000000", + "DURATION-eng": "02:08:20.659000000", + "NUMBER_OF_BYTES": "51901", + "NUMBER_OF_BYTES-eng": "51901", + "NUMBER_OF_FRAMES": "1662", + "NUMBER_OF_FRAMES-eng": "1662", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "49", + "BPS-eng": "49", + "DURATION": "02:18:56.503000000", + "DURATION-eng": "02:18:56.503000000", + "NUMBER_OF_BYTES": "51886", + "NUMBER_OF_BYTES-eng": "51886", + "NUMBER_OF_FRAMES": "1652", + "NUMBER_OF_FRAMES-eng": "1652", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "lav" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "02:18:56.503000000", + "DURATION-eng": "02:18:56.503000000", + "NUMBER_OF_BYTES": "52813", + "NUMBER_OF_BYTES-eng": "52813", + "NUMBER_OF_FRAMES": "1601", + "NUMBER_OF_FRAMES-eng": "1601", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "lit" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "43", + "BPS-eng": "43", + "DURATION": "02:18:53.875000000", + "DURATION-eng": "02:18:53.875000000", + "NUMBER_OF_BYTES": "45130", + "NUMBER_OF_BYTES-eng": "45130", + "NUMBER_OF_FRAMES": "1471", + "NUMBER_OF_FRAMES-eng": "1471", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "02:18:53.875000000", + "DURATION-eng": "02:18:53.875000000", + "NUMBER_OF_BYTES": "53969", + "NUMBER_OF_BYTES-eng": "53969", + "NUMBER_OF_FRAMES": "1603", + "NUMBER_OF_FRAMES-eng": "1603", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "92", + "BPS-eng": "92", + "DURATION": "02:10:48.348000000", + "DURATION-eng": "02:10:48.348000000", + "NUMBER_OF_BYTES": "90458", + "NUMBER_OF_BYTES-eng": "90458", + "NUMBER_OF_FRAMES": "1411", + "NUMBER_OF_FRAMES-eng": "1411", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "02:18:53.875000000", + "DURATION-eng": "02:18:53.875000000", + "NUMBER_OF_BYTES": "49260", + "NUMBER_OF_BYTES-eng": "49260", + "NUMBER_OF_FRAMES": "1414", + "NUMBER_OF_FRAMES-eng": "1414", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "slv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "02:10:46.179000000", + "DURATION-eng": "02:10:46.179000000", + "NUMBER_OF_BYTES": "1546", + "NUMBER_OF_BYTES-eng": "1546", + "NUMBER_OF_FRAMES": "57", + "NUMBER_OF_FRAMES-eng": "57", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "113", + "BPS-eng": "113", + "DURATION": "02:18:56.503000000", + "DURATION-eng": "02:18:56.503000000", + "NUMBER_OF_BYTES": "118506", + "NUMBER_OF_BYTES-eng": "118506", + "NUMBER_OF_FRAMES": "1621", + "NUMBER_OF_FRAMES-eng": "1621", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "02:18:53.875000000", + "DURATION-eng": "02:18:53.875000000", + "NUMBER_OF_BYTES": "52344", + "NUMBER_OF_BYTES-eng": "52344", + "NUMBER_OF_FRAMES": "1593", + "NUMBER_OF_FRAMES-eng": "1593", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "02:18:56.504000000", + "DURATION-eng": "02:18:56.504000000", + "NUMBER_OF_BYTES": "86530", + "NUMBER_OF_BYTES-eng": "86530", + "NUMBER_OF_FRAMES": "1655", + "NUMBER_OF_FRAMES-eng": "1655", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "80", + "BPS-eng": "80", + "DURATION": "02:18:56.378000000", + "DURATION-eng": "02:18:56.378000000", + "NUMBER_OF_BYTES": "83867", + "NUMBER_OF_BYTES-eng": "83867", + "NUMBER_OF_FRAMES": "1605", + "NUMBER_OF_FRAMES-eng": "1605", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "43", + "BPS-eng": "43", + "DURATION": "02:18:58.088000000", + "DURATION-eng": "02:18:58.088000000", + "NUMBER_OF_BYTES": "45571", + "NUMBER_OF_BYTES-eng": "45571", + "NUMBER_OF_FRAMES": "1547", + "NUMBER_OF_FRAMES-eng": "1547", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "51", + "BPS-eng": "51", + "DURATION": "02:18:53.875000000", + "DURATION-eng": "02:18:53.875000000", + "NUMBER_OF_BYTES": "53356", + "NUMBER_OF_BYTES-eng": "53356", + "NUMBER_OF_FRAMES": "1608", + "NUMBER_OF_FRAMES-eng": "1608", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "45", + "BPS-eng": "45", + "DURATION": "02:18:54.960000000", + "DURATION-eng": "02:18:54.960000000", + "NUMBER_OF_BYTES": "47114", + "NUMBER_OF_BYTES-eng": "47114", + "NUMBER_OF_FRAMES": "1275", + "NUMBER_OF_FRAMES-eng": "1275", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8395.680000", + "duration_ts": 8395680, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "62", + "BPS-eng": "62", + "DURATION": "02:08:23.329000000", + "DURATION-eng": "02:08:23.329000000", + "NUMBER_OF_BYTES": "60458", + "NUMBER_OF_BYTES-eng": "60458", + "NUMBER_OF_FRAMES": "1856", + "NUMBER_OF_FRAMES-eng": "1856", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 22, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4581789", + "BPS-eng": "4581789", + "DURATION": "02:19:55.637000000", + "DURATION-eng": "02:19:55.637000000", + "NUMBER_OF_BYTES": "4808380329", + "NUMBER_OF_BYTES-eng": "4808380329", + "NUMBER_OF_FRAMES": "201294", + "NUMBER_OF_FRAMES-eng": "201294", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 23, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "02:19:55.680000000", + "DURATION-eng": "02:19:55.680000000", + "NUMBER_OF_BYTES": "402992640", + "NUMBER_OF_BYTES-eng": "402992640", + "NUMBER_OF_FRAMES": "262365", + "NUMBER_OF_FRAMES-eng": "262365", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-17 13:35:03", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-17 13:35:03", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Point Break (1991)/a225fad4c1144623b86c4ca4af053096.mkv": { + "format": { + "bit_rate": "7737168", + "duration": "7325.696000", + "filename": "Point Break (1991)/a225fad4c1144623b86c4ca4af053096.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 12, + "probe_score": 100, + "size": "7085017597", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-09-04T21:51:39.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 542, + "coded_width": 1280, + "display_aspect_ratio": "640:271", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 542, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7325.696000", + "duration_ts": 7325696, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "The BFG (2016)/LE BGG - LE BON GROS GEANT.mkv": { + "format": { + "bit_rate": "11972391", + "duration": "7058.944000", + "filename": "The BFG (2016)/LE BGG - LE BON GROS GEANT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "10564055310", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-11-16T06:31:58.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9820670", + "BPS-eng": "9820670", + "DURATION": "01:57:38.897000000", + "DURATION-eng": "01:57:38.897000000", + "NUMBER_OF_BYTES": "8665387992", + "NUMBER_OF_BYTES-eng": "8665387992", + "NUMBER_OF_FRAMES": "169244", + "NUMBER_OF_FRAMES-eng": "169244", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-16 06:31:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-16 06:31:58", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:57:38.944000000", + "DURATION-eng": "01:57:38.944000000", + "NUMBER_OF_BYTES": "564715520", + "NUMBER_OF_BYTES-eng": "564715520", + "NUMBER_OF_FRAMES": "220592", + "NUMBER_OF_FRAMES-eng": "220592", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-16 06:31:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-16 06:31:58", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:57:38.934000000", + "DURATION-eng": "01:57:38.934000000", + "NUMBER_OF_BYTES": "1331491300", + "NUMBER_OF_BYTES-eng": "1331491300", + "NUMBER_OF_FRAMES": "661775", + "NUMBER_OF_FRAMES-eng": "661775", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-16 06:31:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-16 06:31:58", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7058.944000", + "duration_ts": 7058944, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "01:50:23.492000000", + "DURATION-eng": "01:50:23.492000000", + "NUMBER_OF_BYTES": "28685", + "NUMBER_OF_BYTES-eng": "28685", + "NUMBER_OF_FRAMES": "906", + "NUMBER_OF_FRAMES-eng": "906", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-16 06:31:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-16 06:31:58", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7058.944000", + "duration_ts": 7058944, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:50:23.492000000", + "DURATION-eng": "01:50:23.492000000", + "NUMBER_OF_BYTES": "628", + "NUMBER_OF_BYTES-eng": "628", + "NUMBER_OF_FRAMES": "28", + "NUMBER_OF_FRAMES-eng": "28", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-16 06:31:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-16 06:31:58", + "language": "fre", + "title": "Forced" + }, + "time_base": "1/1000" + } + ] + }, + "Dawn Of The Planet Of The Apes (2014)/Dawn.of.the.Planet.of.the.Apes.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2140724", + "duration": "7824.340000", + "filename": "Dawn Of The Planet Of The Apes (2014)/Dawn.of.the.Planet.of.the.Apes.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2093719362", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-11-11T10:01:47.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2042897", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.191375", + "duration_ts": 187780593, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "187593", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-11-11T10:01:47.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93730", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7824.341333", + "duration_ts": 375568384, + "index": 1, + "max_bit_rate": "103448", + "nb_frames": "366766", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-11-11T10:02:02.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Star Trek Beyond (2016)/Star.Trek.Beyond.2016.1080p.WEB-DL.DD5.1.H264-FGT.mkv": { + "format": { + "bit_rate": "4941214", + "duration": "7341.467000", + "filename": "Star Trek Beyond (2016)/Star.Trek.Beyond.2016.1080p.WEB-DL.DD5.1.H264-FGT.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "4534470116", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-28T21:54:43.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "Star.Trek.Beyond.2016.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1912, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "239:100", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Star.Trek.Beyond.2016.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1912 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Star.Trek.Beyond.2016.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7341.467000", + "duration_ts": 7341467, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "FORCED" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7341.467000", + "duration_ts": 660732030, + "has_b_frames": 0, + "height": 600, + "index": 3, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7341.467000", + "duration_ts": 660732030, + "has_b_frames": 0, + "height": 176, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7341.467000", + "duration_ts": 660732030, + "has_b_frames": 0, + "height": 120, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7341.467000", + "duration_ts": 660732030, + "has_b_frames": 0, + "height": 882, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + } + ] + }, + "The Hangover (2009)/The Hangover {2009} - Mr. KickASS.mp4": { + "format": { + "bit_rate": "906461", + "duration": "6473.600000", + "filename": "The Hangover (2009)/The Hangover {2009} - Mr. KickASS.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733508998", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-04-16T20:08:28.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "774529", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6473.467000", + "duration_ts": 155363208, + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "155208", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-04-16T20:08:28.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (build 1)", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127804", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6473.600000", + "duration_ts": 310732800, + "index": 1, + "max_bit_rate": "146792", + "nb_frames": "303450", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-04-16T20:10:38.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Lord Of The Rings 3 - The Return Of The King (2003)/The Lord of The Rings 3 - The Return of The King (2003) Special Extended 1080p BluRay DTS-HD MA 6.1.mkv": { + "format": { + "bit_rate": "35045291", + "duration": "15792.502000", + "filename": "The Lord Of The Rings 3 - The Return Of The King (2003)/The Lord of The Rings 3 - The Return of The King (2003) Special Extended 1080p BluRay DTS-HD MA 6.1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "69181603798", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-12-11T19:52:39.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30484708", + "BPS-eng": "30484708", + "DURATION": "04:23:11.484000000", + "DURATION-eng": "04:23:11.484000000", + "NUMBER_OF_BYTES": "60174847814", + "NUMBER_OF_BYTES-eng": "60174847814", + "NUMBER_OF_FRAMES": "378617", + "NUMBER_OF_FRAMES-eng": "378617", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 19:52:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 19:52:39" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4552235", + "BPS-eng": "4552235", + "DURATION": "04:23:12.502000000", + "DURATION-eng": "04:23:12.502000000", + "NUMBER_OF_BYTES": "8986398536", + "NUMBER_OF_BYTES-eng": "8986398536", + "NUMBER_OF_FRAMES": "1480547", + "NUMBER_OF_FRAMES-eng": "1480547", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 19:52:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 19:52:39", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "15792.502000", + "duration_ts": 15792502, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "18595", + "BPS-eng": "18595", + "DURATION": "03:59:26.435000000", + "DURATION-eng": "03:59:26.435000000", + "NUMBER_OF_BYTES": "33394194", + "NUMBER_OF_BYTES-eng": "33394194", + "NUMBER_OF_FRAMES": "2979", + "NUMBER_OF_FRAMES-eng": "2979", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 19:52:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 19:52:39", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "15792.502000", + "duration_ts": 15792502, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "27", + "BPS-eng": "27", + "DURATION": "04:03:47.720000000", + "DURATION-eng": "04:03:47.720000000", + "NUMBER_OF_BYTES": "50908", + "NUMBER_OF_BYTES-eng": "50908", + "NUMBER_OF_FRAMES": "1513", + "NUMBER_OF_FRAMES-eng": "1513", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-12-11 19:52:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-12-11 19:52:39", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Ronin/ronin.1998.1080p.bluray.x264-wpi.mkv": { + "format": { + "bit_rate": "9361539", + "duration": "7293.787000", + "filename": "Ronin/ronin.1998.1080p.bluray.x264-wpi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8535134326", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-22T02:57:50.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Video" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English (DTS)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7293.787000", + "duration_ts": 7293787, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Attack The Block (2011)/inf-atb720p.mkv": { + "format": { + "bit_rate": "7132508", + "duration": "5264.046000", + "filename": "Attack The Block (2011)/inf-atb720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4693231302", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-09-09T00:07:40.000000Z", + "encoder": "libebml v1.2.0 + libmatroska v1.1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Microcosmos (1996)/Microcosmos.1996.720p.BluRay.x264-BestHD.mkv": { + "format": { + "bit_rate": "8302580", + "duration": "4525.487000", + "filename": "Microcosmos (1996)/Microcosmos.1996.720p.BluRay.x264-BestHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4696652578", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-03-23T09:39:48.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1200, + "display_aspect_ratio": "5:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1200 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4525.487000", + "duration_ts": 4525487, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "What We Started (2018)/eb3f36d567d348a08a4cf30912acda0a.mkv": { + "format": { + "bit_rate": "4554641", + "duration": "5742.336000", + "filename": "What We Started (2018)/eb3f36d567d348a08a4cf30912acda0a.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3269285242", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-04-30T19:18:36.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "153375", + "BPS-eng": "153375", + "DURATION": "01:35:42.336000000", + "DURATION-eng": "01:35:42.336000000", + "NUMBER_OF_BYTES": "110091856", + "NUMBER_OF_BYTES-eng": "110091856", + "NUMBER_OF_FRAMES": "269172", + "NUMBER_OF_FRAMES-eng": "269172", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-30 19:18:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-30 19:18:36", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 718, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:359", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 718, + "index": 1, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4014615", + "BPS-eng": "4014615", + "DURATION": "01:35:42.284000000", + "DURATION-eng": "01:35:42.284000000", + "NUMBER_OF_BYTES": "2881632884", + "NUMBER_OF_BYTES-eng": "2881632884", + "NUMBER_OF_FRAMES": "137677", + "NUMBER_OF_FRAMES-eng": "137677", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-30 19:18:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-30 19:18:36", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:35:42.336000000", + "DURATION-eng": "01:35:42.336000000", + "NUMBER_OF_BYTES": "275632128", + "NUMBER_OF_BYTES-eng": "275632128", + "NUMBER_OF_FRAMES": "179448", + "NUMBER_OF_FRAMES-eng": "179448", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-04-30 19:18:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-04-30 19:18:36", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Iron Sky (2012)/haideaf-ironsky.mkv": { + "format": { + "bit_rate": "6762782", + "duration": "5553.125000", + "filename": "Iron Sky (2012)/haideaf-ironsky.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4694322286", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.3 (date: 2010 aug 28)" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English DTS 1509kbps" + }, + "time_base": "1/1000" + } + ] + }, + "PCU/PCU.avi": { + "format": { + "bit_rate": "1214843", + "duration": "4834.955125", + "filename": "PCU/PCU.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734214144", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1086460", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 384, + "coded_width": 512, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4834.955125", + "duration_ts": 115923, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "115923", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115672", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4834.944000", + "duration_ts": 201456, + "index": 1, + "nb_frames": "201456", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Ferris Buellers Day Off/Ferris Buellers Day Off.avi": { + "format": { + "bit_rate": "956107", + "duration": "6179.279279", + "filename": "Ferris Buellers Day Off/Ferris Buellers Day Off.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "738506752", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "816659", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 720, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6179.279279", + "duration_ts": 185193, + "has_b_frames": 0, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "185193", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "98637180", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/15963" + } + ] + }, + "Despicable Me 3 (2017)/Despicable.Me.3.2017.WEB-DL.576p.H264.mp4": { + "format": { + "bit_rate": "936989", + "duration": "5372.521667", + "filename": "Despicable Me 3 (2017)/Despicable.Me.3.2017.WEB-DL.576p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "629249778", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-09-01T10:01:06.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64531", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5372.522667", + "duration_ts": 257881088, + "index": 0, + "max_bit_rate": "124088", + "nb_frames": "251837", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-09-01T10:01:06.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "30/1", + "bit_rate": "867848", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/60", + "codec_type": "video", + "coded_height": 360, + "coded_width": 848, + "display_aspect_ratio": "106:45", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5372.500000", + "duration_ts": 161175000, + "has_b_frames": 2, + "height": 360, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "161175", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.066667", + "tags": { + "creation_time": "2017-09-01T10:01:08.000000Z", + "handler_name": "Despicable.Me.3.2017.WEB-DL.576p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/30000", + "width": 848 + } + ] + }, + "Smokin' Aces/Smokin' Aces.avi": { + "format": { + "bit_rate": "899520", + "duration": "6535.326994", + "filename": "Smokin' Aces/Smokin' Aces.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734832640", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "778211", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 246, + "coded_width": 596, + "display_aspect_ratio": "298:123", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6535.326994", + "duration_ts": 156691, + "has_b_frames": 1, + "height": 246, + "index": 0, + "level": 5, + "nb_frames": "156691", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 596 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "272305", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Grand Canyon/Grand Canyon.avi": { + "format": { + "bit_rate": "1551181", + "duration": "8072.647917", + "filename": "Grand Canyon/Grand Canyon.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1565267548", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "IWEB": "tehPARADOX.COM", + "artist": "-=tehPARADOX.COM-smokey888=-", + "language": "Undefined", + "title": "Grand Canyon" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1096434", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "8072.647917", + "duration_ts": 193550, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "193550", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "4.0", + "channels": 4, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "452074055", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Moving Art Deserts (2014)/5531d10663894281a8a95bf2a12131dd.mkv": { + "format": { + "bit_rate": "9758105", + "duration": "1536.053000", + "filename": "Moving Art Deserts (2014)/5531d10663894281a8a95bf2a12131dd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1873620888", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-22T12:44:38.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9462333", + "BPS-eng": "9462333", + "DURATION": "00:25:36.035000000", + "DURATION-eng": "00:25:36.035000000", + "NUMBER_OF_BYTES": "1816809494", + "NUMBER_OF_BYTES-eng": "1816809494", + "NUMBER_OF_FRAMES": "36828", + "NUMBER_OF_FRAMES-eng": "36828", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-22 12:44:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-22 12:44:38" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "FLAC (Free Lossless Audio Codec)", + "codec_name": "flac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "293996", + "BPS-eng": "293996", + "DURATION": "00:25:36.053000000", + "DURATION-eng": "00:25:36.053000000", + "NUMBER_OF_BYTES": "56449360", + "NUMBER_OF_BYTES-eng": "56449360", + "NUMBER_OF_FRAMES": "18001", + "NUMBER_OF_FRAMES-eng": "18001", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-22 12:44:38", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-22 12:44:38", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Zootopia (2016)/Zootopia.2016.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1328662", + "duration": "6512.446667", + "filename": "Zootopia (2016)/Zootopia.2016.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1081605366", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2016-05-22T12:04:51.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64597", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6512.448000", + "duration_ts": 312597504, + "index": 0, + "max_bit_rate": "93584", + "nb_frames": "305271", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-22T12:04:51.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1260152", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6512.422583", + "duration_ts": 156298142, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "156142", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2016-05-22T12:04:53.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Justice League (2017)/Justice.League.2017.1080p.WEBRip.x264.AAC2.0-SHITBOX.mkv": { + "format": { + "bit_rate": "4339826", + "duration": "7183.125000", + "filename": "Justice League (2017)/Justice.League.2017.1080p.WEBRip.x264.AAC2.0-SHITBOX.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3896689378", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-02-09T23:53:09.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Justice.League.2017.1080p.WEBRip.x264.AAC2.0-SHITBOX" + } + }, + "streams": [ + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "4112894", + "BPS-eng": "4112894", + "DURATION": "01:59:43.119000000", + "DURATION-eng": "01:59:43.119000000", + "NUMBER_OF_BYTES": "3692926030", + "NUMBER_OF_BYTES-eng": "3692926030", + "NUMBER_OF_FRAMES": "215277", + "NUMBER_OF_FRAMES-eng": "215277", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-09 23:53:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-09 23:53:09", + "title": "Justice.League.2017.1080p.WEBRip.x264.AAC2.0-SHITBOX" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "224000", + "BPS-eng": "224000", + "DURATION": "01:59:43.125000000", + "DURATION-eng": "01:59:43.125000000", + "NUMBER_OF_BYTES": "201127510", + "NUMBER_OF_BYTES-eng": "201127510", + "NUMBER_OF_FRAMES": "336709", + "NUMBER_OF_FRAMES-eng": "336709", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-09 23:53:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-09 23:53:09", + "language": "eng", + "title": "Justice.League.2017.1080p.WEBRip.x264.AAC2.0-SHITBOX" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7183.125000", + "duration_ts": 7183125, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "43", + "BPS-eng": "43", + "DURATION": "01:49:30.534000000", + "DURATION-eng": "01:49:30.534000000", + "NUMBER_OF_BYTES": "36125", + "NUMBER_OF_BYTES-eng": "36125", + "NUMBER_OF_FRAMES": "1279", + "NUMBER_OF_FRAMES-eng": "1279", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-09 23:53:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-09 23:53:09", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 1000, + "coded_width": 674, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "337:500", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7183.125000", + "duration_ts": 646481250, + "has_b_frames": 0, + "height": 1000, + "index": 3, + "level": -99, + "pix_fmt": "yuvj420p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 674 + } + ] + }, + "Scent Of A Woman (1992)/Scent.Of.A.Woman.1992.1080p.BluRay.x264.AC3.mp4": { + "format": { + "bit_rate": "3653294", + "duration": "9384.416667", + "filename": "Scent Of A Woman (1992)/Scent.Of.A.Woman.1992.1080p.BluRay.x264.AC3.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4285504288", + "start_time": "0.000000", + "tags": { + "artist": "Martin Brest", + "compatible_brands": "isomavc1iso2", + "creation_time": "2016-01-26T10:44:03.000000Z", + "date": "1992", + "genre": "Drama", + "hd_video": "2", + "iTunEXTC": "mpaa|R|400|", + "iTunMOVI": "\n\n\n \n cast\n \n \n name\n Al Pacino\n \n \n name\n Chris O'Donnell\n \n \n name\n Gabrielle Anwar\n \n \n name\n Philip Seymour Hoffman\n \n \n directors\n \n \n name\n Martin Brest\n \n \n producers\n \n \n name\n Martin Brest\n \n \n screenwriters\n \n \n name\n Bo Goldman\n \n \n \n\n", + "major_brand": "isom", + "media_type": "9", + "minor_version": "1", + "synopsis": "A prep school student needing money agrees to \"babysit\" a blind man, but the job is not at all what he anticipated.", + "title": "Scent of a Woman" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "3008423", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9384.416708", + "duration_ts": 225226001, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "225001", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2016-01-26T10:44:03.000000Z", + "language": "eng" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "9384.384000", + "duration_ts": 450450432, + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "293262", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-01-26T10:44:40.000000Z", + "handler_name": "Surround Sound", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 227, + "coded_width": 151, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "151:227", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9384.416667", + "duration_ts": 844597500, + "has_b_frames": 0, + "height": 227, + "index": 2, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/90000", + "width": 151 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9384.417000", + "duration_ts": 9384417, + "index": 3, + "nb_frames": "16", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-01-26T10:50:02.000000Z", + "language": "und" + }, + "time_base": "1/1000" + } + ] + }, + "The Lego Movie (2014)/The.Lego.Movie.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2053625", + "duration": "6035.391667", + "filename": "The Lego Movie (2014)/The.Lego.Movie.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1549304450", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-05-28T23:58:24.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1955862", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6035.320958", + "duration_ts": 144847703, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "144703", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-05-28T23:58:24.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93705", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6035.392000", + "duration_ts": 289698816, + "index": 1, + "max_bit_rate": "101680", + "nb_frames": "282909", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-05-28T23:58:31.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Men in Black II (2002)/Men.in.Black.II[2002]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1158976", + "duration": "5071.960000", + "filename": "Men in Black II (2002)/Men.in.Black.II[2002]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734785536", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1021271", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 364, + "coded_width": 696, + "display_aspect_ratio": "174:91", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5071.960000", + "duration_ts": 126799, + "has_b_frames": 1, + "height": 364, + "index": 0, + "level": 5, + "nb_frames": "126799", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 696 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "211332", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Monty Pythons The Meaning of Life (1983)/The Meaning of Life.mp4": { + "format": { + "bit_rate": "4014156", + "duration": "6427.711667", + "filename": "Monty Pythons The Meaning of Life (1983)/The Meaning of Life.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3225229736", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-11-12T00:44:01.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "3693251", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6427.712958", + "duration_ts": 617060444, + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "154111", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-11-12T00:44:01.000000Z", + "handler_name": "The Meaning of Life", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "317375", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6427.712000", + "duration_ts": 308530176, + "index": 1, + "max_bit_rate": "335720", + "nb_frames": "301299", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-11-12T00:46:40.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "There's Something About Mary (1998)/bccbdf6520874cbaaf679db79f7172fa.mkv": { + "format": { + "bit_rate": "10655379", + "duration": "7180.590000", + "filename": "There's Something About Mary (1998)/bccbdf6520874cbaaf679db79f7172fa.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 20, + "probe_score": 100, + "size": "9563989048", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-12T10:29:39.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8596776", + "BPS-eng": "8596776", + "DURATION": "01:59:40.590000000", + "DURATION-eng": "01:59:40.590000000", + "NUMBER_OF_BYTES": "7716241298", + "NUMBER_OF_BYTES-eng": "7716241298", + "NUMBER_OF_FRAMES": "172162", + "NUMBER_OF_FRAMES-eng": "172162", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "eng", + "title": "MPEG-4 AVC Video / 8597 kbps / 23.976 fps / High Profile 4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:59:40.587000000", + "DURATION-eng": "01:59:40.587000000", + "NUMBER_OF_BYTES": "1354438160", + "NUMBER_OF_BYTES-eng": "1354438160", + "NUMBER_OF_FRAMES": "673180", + "NUMBER_OF_FRAMES-eng": "673180", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "eng", + "title": "DTS Audio / 5.1 / 48 kHz / 1509 Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "43634", + "BPS-eng": "43634", + "DURATION": "01:52:29.451000000", + "DURATION-eng": "01:52:29.451000000", + "NUMBER_OF_BYTES": "36813926", + "NUMBER_OF_BYTES-eng": "36813926", + "NUMBER_OF_FRAMES": "3236", + "NUMBER_OF_FRAMES-eng": "3236", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31395", + "BPS-eng": "31395", + "DURATION": "01:55:44.020000000", + "DURATION-eng": "01:55:44.020000000", + "NUMBER_OF_BYTES": "27251157", + "NUMBER_OF_BYTES-eng": "27251157", + "NUMBER_OF_FRAMES": "2705", + "NUMBER_OF_FRAMES-eng": "2705", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "spa", + "title": "Spanish (Latin American)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "40559", + "BPS-eng": "40559", + "DURATION": "01:52:29.451000000", + "DURATION-eng": "01:52:29.451000000", + "NUMBER_OF_BYTES": "34219395", + "NUMBER_OF_BYTES-eng": "34219395", + "NUMBER_OF_FRAMES": "3239", + "NUMBER_OF_FRAMES-eng": "3239", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30234", + "BPS-eng": "30234", + "DURATION": "01:55:28.046000000", + "DURATION-eng": "01:55:28.046000000", + "NUMBER_OF_BYTES": "26183471", + "NUMBER_OF_BYTES-eng": "26183471", + "NUMBER_OF_FRAMES": "2733", + "NUMBER_OF_FRAMES-eng": "2733", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30376", + "BPS-eng": "30376", + "DURATION": "01:55:27.837000000", + "DURATION-eng": "01:55:27.837000000", + "NUMBER_OF_BYTES": "26305505", + "NUMBER_OF_BYTES-eng": "26305505", + "NUMBER_OF_FRAMES": "2709", + "NUMBER_OF_FRAMES-eng": "2709", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "33994", + "BPS-eng": "33994", + "DURATION": "01:55:27.921000000", + "DURATION-eng": "01:55:27.921000000", + "NUMBER_OF_BYTES": "29438734", + "NUMBER_OF_BYTES-eng": "29438734", + "NUMBER_OF_FRAMES": "2705", + "NUMBER_OF_FRAMES-eng": "2705", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30699", + "BPS-eng": "30699", + "DURATION": "01:57:32.337000000", + "DURATION-eng": "01:57:32.337000000", + "NUMBER_OF_BYTES": "27063247", + "NUMBER_OF_BYTES-eng": "27063247", + "NUMBER_OF_FRAMES": "2707", + "NUMBER_OF_FRAMES-eng": "2707", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31835", + "BPS-eng": "31835", + "DURATION": "01:57:32.337000000", + "DURATION-eng": "01:57:32.337000000", + "NUMBER_OF_BYTES": "28064530", + "NUMBER_OF_BYTES-eng": "28064530", + "NUMBER_OF_FRAMES": "2706", + "NUMBER_OF_FRAMES-eng": "2706", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "18334", + "BPS-eng": "18334", + "DURATION": "01:57:32.503000000", + "DURATION-eng": "01:57:32.503000000", + "NUMBER_OF_BYTES": "16163364", + "NUMBER_OF_BYTES-eng": "16163364", + "NUMBER_OF_FRAMES": "2710", + "NUMBER_OF_FRAMES-eng": "2710", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29926", + "BPS-eng": "29926", + "DURATION": "01:57:32.211000000", + "DURATION-eng": "01:57:32.211000000", + "NUMBER_OF_BYTES": "26381272", + "NUMBER_OF_BYTES-eng": "26381272", + "NUMBER_OF_FRAMES": "2714", + "NUMBER_OF_FRAMES-eng": "2714", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29440", + "BPS-eng": "29440", + "DURATION": "01:57:32.211000000", + "DURATION-eng": "01:57:32.211000000", + "NUMBER_OF_BYTES": "25952453", + "NUMBER_OF_BYTES-eng": "25952453", + "NUMBER_OF_FRAMES": "2704", + "NUMBER_OF_FRAMES-eng": "2704", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "hrv" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30222", + "BPS-eng": "30222", + "DURATION": "01:52:13.811000000", + "DURATION-eng": "01:52:13.811000000", + "NUMBER_OF_BYTES": "25439480", + "NUMBER_OF_BYTES-eng": "25439480", + "NUMBER_OF_FRAMES": "2048", + "NUMBER_OF_FRAMES-eng": "2048", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29962", + "BPS-eng": "29962", + "DURATION": "01:57:32.337000000", + "DURATION-eng": "01:57:32.337000000", + "NUMBER_OF_BYTES": "26413251", + "NUMBER_OF_BYTES-eng": "26413251", + "NUMBER_OF_FRAMES": "2750", + "NUMBER_OF_FRAMES-eng": "2750", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "26226", + "BPS-eng": "26226", + "DURATION": "01:55:27.712000000", + "DURATION-eng": "01:55:27.712000000", + "NUMBER_OF_BYTES": "22711226", + "NUMBER_OF_BYTES-eng": "22711226", + "NUMBER_OF_FRAMES": "3002", + "NUMBER_OF_FRAMES-eng": "3002", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34255", + "BPS-eng": "34255", + "DURATION": "01:57:32.379000000", + "DURATION-eng": "01:57:32.379000000", + "NUMBER_OF_BYTES": "30197970", + "NUMBER_OF_BYTES-eng": "30197970", + "NUMBER_OF_FRAMES": "2702", + "NUMBER_OF_FRAMES-eng": "2702", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "ice" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34242", + "BPS-eng": "34242", + "DURATION": "01:57:32.420000000", + "DURATION-eng": "01:57:32.420000000", + "NUMBER_OF_BYTES": "30186551", + "NUMBER_OF_BYTES-eng": "30186551", + "NUMBER_OF_FRAMES": "2690", + "NUMBER_OF_FRAMES-eng": "2690", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28995", + "BPS-eng": "28995", + "DURATION": "01:57:32.170000000", + "DURATION-eng": "01:57:32.170000000", + "NUMBER_OF_BYTES": "25560080", + "NUMBER_OF_BYTES-eng": "25560080", + "NUMBER_OF_FRAMES": "2708", + "NUMBER_OF_FRAMES-eng": "2708", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7180.590000", + "duration_ts": 7180590, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28673", + "BPS-eng": "28673", + "DURATION": "01:57:32.337000000", + "DURATION-eng": "01:57:32.337000000", + "NUMBER_OF_BYTES": "25277130", + "NUMBER_OF_BYTES-eng": "25277130", + "NUMBER_OF_FRAMES": "2706", + "NUMBER_OF_FRAMES-eng": "2706", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-12 10:29:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-12 10:29:39", + "language": "slv" + }, + "time_base": "1/1000" + } + ] + }, + "The Gruffalo's Child (2011)/BBC The Gruffalo's Child.mkv": { + "format": { + "bit_rate": "1031034", + "duration": "1555.992000", + "filename": "The Gruffalo's Child (2011)/BBC The Gruffalo's Child.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "200535226", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf56.40.101" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 400, + "coded_width": 720, + "display_aspect_ratio": "9:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "has_b_frames": 0, + "height": 400, + "index": 0, + "level": 1, + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "00:25:55.760000000" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "00:25:55.992000000" + }, + "time_base": "1/1000" + } + ] + }, + "I Am Legend/I.Am.Legend.720p.BluRay.x264-REFiNED.mkv": { + "format": { + "bit_rate": "6228198", + "duration": "6031.680000", + "filename": "I Am Legend/I.Am.Legend.720p.BluRay.x264-REFiNED.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4695812875", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-03T17:11:14.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Being John Malkovich (1999)/78fbe6fe19844100bf20878a7f4d286b.mkv": { + "format": { + "bit_rate": "12927265", + "duration": "6798.848000", + "filename": "Being John Malkovich (1999)/78fbe6fe19844100bf20878a7f4d286b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "10986314516", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-05T21:11:49.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 690, + "coded_width": 1280, + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 690, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6798.848000", + "duration_ts": 6798848, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6798.848000", + "duration_ts": 6798848, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "gre" + }, + "time_base": "1/1000" + } + ] + }, + "Rushmore (1998)/Rushmore (AC3-6ch) (1of2).avi": { + "format": { + "bit_rate": "2088700", + "duration": "2821.026542", + "filename": "Rushmore (1998)/Rushmore (AC3-6ch) (1of2).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736535022", + "start_time": "0.000000", + "tags": { + "artist": "theJABBERWOCK", + "title": "Rushmore (AC3-6ch) (1of2)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1695431", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "2821.026542", + "duration_ts": 67637, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": -99, + "nb_frames": "67637", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "135409274", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "The X Files I Want To Believe (2008)/The.X.Files.I.Want.to.Believe.2008.DirCut.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1034667", + "duration": "6488.383333", + "filename": "The X Files I Want To Believe (2008)/The.X.Files.I.Want.to.Believe.2008.DirCut.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "839164544", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2011-01-08T05:52:08.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "56451", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6488.384000", + "duration_ts": 311442432, + "index": 0, + "max_bit_rate": "108528", + "nb_frames": "304143", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-01-08T05:52:08.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "974941", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1216, + "display_aspect_ratio": "38:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6488.315167", + "duration_ts": 155719564, + "has_b_frames": 1, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "155564", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2011-01-08T05:52:12.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1216 + } + ] + }, + "The Sword In The Stone (1963)/The.Sword.in.the.Stone.1963.1080p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "9826411", + "duration": "4776.772000", + "filename": "The Sword In The Stone (1963)/The.Sword.in.the.Stone.1963.1080p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "5867315749", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1888, + "display_aspect_ratio": "236:135", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1888 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4776.772000", + "duration_ts": 4776772, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Songs" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4776.772000", + "duration_ts": 4776772, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Songs SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4776.772000", + "duration_ts": 4776772, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4776.772000", + "duration_ts": 4776772, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Number 23/The Number 23.avi": { + "format": { + "bit_rate": "968761", + "duration": "6074.074074", + "filename": "The Number 23/The Number 23.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735541248", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "831477", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 282, + "coded_width": 676, + "display_aspect_ratio": "338:141", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6074.074074", + "duration_ts": 145632, + "has_b_frames": 1, + "height": 282, + "index": 0, + "level": 5, + "nb_frames": "145632", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 676 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "253041", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Swing Kids/Swing Kids.mp4": { + "format": { + "bit_rate": "1077853", + "duration": "6826.480544", + "filename": "Swing Kids/Swing Kids.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "919743479", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T12:57:07.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1172506996/48885649", + "bit_rate": "908633", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "27084098/1299207233", + "codec_type": "video", + "coded_height": 460, + "coded_width": 718, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "5744:3105", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6826.480544", + "duration_ts": 614383249, + "has_b_frames": 1, + "height": 460, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "163731", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T12:57:07.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164066", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6826.453333", + "duration_ts": 327669760, + "index": 1, + "max_bit_rate": "248584", + "nb_frames": "319990", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T12:57:07.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Star Wars Episode VII The Force Awakens (2015)/Star.Wars.Episode.VII.The.Force.Awakens.2015.720p.BRRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1266970", + "duration": "8286.695000", + "filename": "Star Wars Episode VII The Force Awakens (2015)/Star.Wars.Episode.VII.The.Force.Awakens.2015.720p.BRRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "1312375096", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-03-23T02:26:13.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512" + } + }, + "streams": [ + { + "avg_frame_rate": "1986820000/82866947", + "bit_rate": "1099815", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "22841103/1095277717", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8286.695000", + "duration_ts": 745802550, + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "198682", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "801:800", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-23T02:26:13.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "159992", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8286.678000", + "duration_ts": 397760544, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "388438", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-23T02:26:13.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "50", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8286.695000", + "duration_ts": 745802550, + "height": 60, + "index": 2, + "nb_frames": "2806", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-23T02:26:13.000000Z", + "handler_name": "SubtitleHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1281 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "62", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8286.695000", + "duration_ts": 745802550, + "height": 60, + "index": 3, + "nb_frames": "3556", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-23T02:26:13.000000Z", + "handler_name": "SubtitleHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1281 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8286.695000", + "duration_ts": 8286695, + "index": 4, + "nb_frames": "50", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-03-23T02:26:13.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Solaris (2002)/solaris.2002.720p.bluray.x264-veto.mkv": { + "format": { + "bit_rate": "6335011", + "duration": "5923.030000", + "filename": "Solaris (2002)/solaris.2002.720p.bluray.x264-veto.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4690308009", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-19T21:28:51.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4823714", + "BPS-eng": "4823714", + "DURATION": "01:38:43.001000000", + "DURATION-eng": "01:38:43.001000000", + "NUMBER_OF_BYTES": "3571358327", + "NUMBER_OF_BYTES-eng": "3571358327", + "NUMBER_OF_FRAMES": "142010", + "NUMBER_OF_FRAMES-eng": "142010", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-19 21:28:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-19 21:28:51" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:38:43.030000000", + "DURATION-eng": "01:38:43.030000000", + "NUMBER_OF_BYTES": "1117231408", + "NUMBER_OF_BYTES-eng": "1117231408", + "NUMBER_OF_FRAMES": "555284", + "NUMBER_OF_FRAMES-eng": "555284", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-19 21:28:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-19 21:28:51", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Lock, Stock And Two Smoking Barrels (1998)/Lock,.Stock.and.Two.Smoking.Barrels.(1998).720p.BluRay.DTS.X265.HEVC.mkv": { + "format": { + "bit_rate": "4015472", + "duration": "6443.307000", + "filename": "Lock, Stock And Two Smoking Barrels (1998)/Lock,.Stock.and.Two.Smoking.Barrels.(1998).720p.BluRay.DTS.X265.HEVC.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3234115538", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2017-03-11T12:51:36Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:347", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 694, + "index": 0, + "level": 93, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2504127", + "BPS-eng": "2504127", + "DURATION": "01:47:23.270000000", + "DURATION-eng": "01:47:23.270000000", + "NUMBER_OF_BYTES": "2016845862", + "NUMBER_OF_BYTES-eng": "2016845862", + "NUMBER_OF_FRAMES": "154484", + "NUMBER_OF_FRAMES-eng": "154484", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-12 17:06:40", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-12 17:06:40", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:47:23.307000000", + "DURATION-eng": "01:47:23.307000000", + "NUMBER_OF_BYTES": "1215368720", + "NUMBER_OF_BYTES-eng": "1215368720", + "NUMBER_OF_FRAMES": "604060", + "NUMBER_OF_FRAMES-eng": "604060", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-12 17:06:40", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-12 17:06:40", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6443.307000", + "duration_ts": 6443307, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "58", + "BPS-eng": "58", + "DURATION": "01:42:04.534000000", + "DURATION-eng": "01:42:04.534000000", + "NUMBER_OF_BYTES": "45091", + "NUMBER_OF_BYTES-eng": "45091", + "NUMBER_OF_FRAMES": "1353", + "NUMBER_OF_FRAMES-eng": "1353", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.9.0 ('Pick Up') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-12 17:06:40", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-12 17:06:40", + "language": "dut" + }, + "time_base": "1/1000" + } + ] + }, + "Moonrise Kingdom (2012)/Moonrise Kingdom 2012 (1080p x265 10bit Tigole).mkv": { + "format": { + "bit_rate": "2347696", + "duration": "5612.713000", + "filename": "Moonrise Kingdom (2012)/Moonrise Kingdom 2012 (1080p x265 10bit Tigole).mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1647118664", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-04-11T11:23:47.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/24", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2015165", + "BPS-eng": "2015165", + "DURATION": "01:33:31.917000000", + "DURATION-eng": "01:33:31.917000000", + "NUMBER_OF_BYTES": "1413617805", + "NUMBER_OF_BYTES-eng": "1413617805", + "NUMBER_OF_FRAMES": "134686", + "NUMBER_OF_FRAMES-eng": "134686", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-11 11:23:47", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-11 11:23:47" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS": "330344", + "BPS-eng": "330344", + "DURATION": "01:33:32.693000000", + "DURATION-eng": "01:33:32.693000000", + "NUMBER_OF_BYTES": "231765379", + "NUMBER_OF_BYTES-eng": "231765379", + "NUMBER_OF_FRAMES": "263095", + "NUMBER_OF_FRAMES-eng": "263095", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-11 11:23:47", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-11 11:23:47", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5612.713000", + "duration_ts": 5612713, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:32:47.041000000", + "DURATION-eng": "01:32:47.041000000", + "NUMBER_OF_BYTES": "41339", + "NUMBER_OF_BYTES-eng": "41339", + "NUMBER_OF_FRAMES": "1286", + "NUMBER_OF_FRAMES-eng": "1286", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-11 11:23:47", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-11 11:23:47", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5612.713000", + "duration_ts": 5612713, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "57", + "BPS-eng": "57", + "DURATION": "01:25:31.790000000", + "DURATION-eng": "01:25:31.790000000", + "NUMBER_OF_BYTES": "36584", + "NUMBER_OF_BYTES-eng": "36584", + "NUMBER_OF_FRAMES": "849", + "NUMBER_OF_FRAMES-eng": "849", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.9.0 ('Father Daughter') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-11 11:23:47", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-11 11:23:47", + "language": "ger" + }, + "time_base": "1/1000" + } + ] + }, + "Kingsman The Secret Service (2014)/Kingsman The Secret Service.mkv": { + "format": { + "bit_rate": "14358864", + "duration": "7717.681000", + "filename": "Kingsman The Secret Service (2014)/Kingsman The Secret Service.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "13852141932", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-05-21T06:03:36.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2", + "title": "RARBG.COM - Kingsman.The.Secret.Service.2014.1080p.BluRay.x264.DTS-HD.MA.7.1-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Kingsman.The.Secret.Service.2014.1080p.BluRay.x264.DTS-HD.MA.7.1-RARBG" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Kingsman.The.Secret.Service.2014.1080p.BluRay.x264.DTS-HD.MA.7.1-RARBG" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7717.681000", + "duration_ts": 7717681, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English-Forced" + }, + "time_base": "1/1000" + } + ] + }, + "Forrest Gump (1994)/Forrest.Gump.1994.720p.BRRip.x264-x0r.mkv": { + "format": { + "bit_rate": "2424475", + "duration": "8529.389000", + "filename": "Forrest Gump (1994)/Forrest.Gump.1994.720p.BRRip.x264-x0r.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2584911567", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-08-11T10:22:17.000000Z", + "encoder": "libebml v0.7.8 + libmatroska v0.8.1", + "title": "Forrest.Gump.1994.720p.BRRip.x264-x0r" + } + }, + "streams": [ + { + "avg_frame_rate": "19109/797", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "797/38218", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "19109/797", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8529.389000", + "duration_ts": 8529389, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Tombstone/Tombstone[1993]XviD.NeRoZ.avi": { + "format": { + "bit_rate": "790472", + "duration": "7432.920000", + "filename": "Tombstone/Tombstone[1993]XviD.NeRoZ.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734439424", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "661881", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 192, + "coded_width": 432, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7432.920000", + "duration_ts": 185823, + "has_b_frames": 1, + "height": 192, + "index": 0, + "level": -99, + "nb_frames": "185823", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 432 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "115720", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7432.920000", + "duration_ts": 309705, + "index": 1, + "nb_frames": "309705", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Snowpiercer (2013)/Snowpiercer.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2205710", + "duration": "7572.586667", + "filename": "Snowpiercer (2013)/Snowpiercer.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2087867037", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-04-07T03:18:55.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2107801", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7572.523292", + "duration_ts": 181740559, + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "181559", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-04-07T03:18:55.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93792", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7572.586667", + "duration_ts": 363484160, + "index": 1, + "max_bit_rate": "104728", + "nb_frames": "354965", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-04-07T03:19:05.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Mission Impossible 4 Ghost Protocol (2011)/Mission.Impossible.4.Ghost.Protocol.2011.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "855036", + "duration": "7976.320000", + "filename": "Mission Impossible 4 Ghost Protocol (2011)/Mission.Impossible.4.Ghost.Protocol.2011.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "852505625", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-07-27T21:24:33.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64453", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7976.320000", + "duration_ts": 382863360, + "index": 0, + "max_bit_rate": "131728", + "nb_frames": "373890", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-27T21:24:33.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "786451", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7976.259958", + "duration_ts": 191430239, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "191239", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-07-27T21:24:36.000000Z", + "handler_name": "Mission.Impossible.4.Ghost.Protocol.2011.BluRay.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Unknown/Unknown.avi": { + "format": { + "bit_rate": "1145783", + "duration": "5122.997998", + "filename": "Unknown/Unknown.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733730816", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "944284", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 274, + "coded_width": 664, + "display_aspect_ratio": "332:137", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5122.997998", + "duration_ts": 122829, + "has_b_frames": 1, + "height": 274, + "index": 0, + "level": 5, + "nb_frames": "122829", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 664 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "122951424", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Earth Girls Are Easy (1989)/81e27b40a608419e88dc640ad82c2369.mkv": { + "format": { + "bit_rate": "1437846", + "duration": "6023.101000", + "filename": "Earth Girls Are Easy (1989)/81e27b40a608419e88dc640ad82c2369.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1082536529", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-16T19:15:22.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 572, + "coded_width": 1024, + "display_aspect_ratio": "256:143", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 572, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS": "1307564", + "BPS-eng": "1307564", + "DURATION": "01:40:23.018000000", + "DURATION-eng": "01:40:23.018000000", + "NUMBER_OF_BYTES": "984435683", + "NUMBER_OF_BYTES-eng": "984435683", + "NUMBER_OF_FRAMES": "144408", + "NUMBER_OF_FRAMES-eng": "144408", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-16 19:15:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-16 19:15:22" + }, + "time_base": "1/1000", + "width": 1024 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "01:40:23.056000000", + "DURATION-eng": "01:40:23.056000000", + "NUMBER_OF_BYTES": "96369128", + "NUMBER_OF_BYTES-eng": "96369128", + "NUMBER_OF_FRAMES": "259392", + "NUMBER_OF_FRAMES-eng": "259392", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-16 19:15:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-16 19:15:22", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6023.101000", + "duration_ts": 6023101, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "69", + "BPS-eng": "69", + "DURATION": "01:39:44.545000000", + "DURATION-eng": "01:39:44.545000000", + "NUMBER_OF_BYTES": "52000", + "NUMBER_OF_BYTES-eng": "52000", + "NUMBER_OF_FRAMES": "1556", + "NUMBER_OF_FRAMES-eng": "1556", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-06-16 19:15:22", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-16 19:15:22", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Kung Fu Hustle/Kung Fu Hustle.avi": { + "format": { + "bit_rate": "1413831", + "duration": "5936.013417", + "filename": "Kung Fu Hustle/Kung Fu Hustle.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1049065472", + "start_time": "0.000000", + "tags": { + "IAS1": "Chinese", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "959126", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5936.013417", + "duration_ts": 142322, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "142322", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "332414208", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Maxed Out/Maxed Out.avi": { + "format": { + "bit_rate": "827995", + "duration": "5218.218218", + "filename": "Maxed Out/Maxed Out.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "540082564", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "687938", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x78766964", + "codec_tag_string": "divx", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 360, + "coded_width": 480, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5218.218218", + "duration_ts": 125112, + "has_b_frames": 0, + "height": 360, + "index": 0, + "level": 1, + "nb_frames": "125112", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 480 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "199757", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Wanted (2008)/Wanted.2008.1080p.BluRay.H264.AAC-RARBG.mp4": { + "format": { + "bit_rate": "2729692", + "duration": "6593.131000", + "filename": "Wanted (2008)/Wanted.2008.1080p.BluRay.H264.AAC-RARBG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2249652663", + "start_time": "0.000000", + "tags": { + "comment": "RARBG.COM - Wanted.2008.1080p.BluRay.H264.AAC-RARBG", + "compatible_brands": "isomiso2avc1mp41", + "encoder": "Lavf55.37.102", + "major_brand": "isom", + "minor_version": "512", + "title": "RARBG.COM - Wanted.2008.1080p.BluRay.H264.AAC-RARBG" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "2499366", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6593.051969", + "duration_ts": 79037507, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "158075", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/11988", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "223997", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6593.131000", + "duration_ts": 316470288, + "index": 1, + "max_bit_rate": "223997", + "nb_frames": "309048", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SoundHandler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6593.131000", + "duration_ts": 6593131, + "index": 2, + "nb_frames": "20", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Red Sparrow (2018)/Red Sparrow 2018 720p BRRip MkvCage.Com.mkv": { + "format": { + "bit_rate": "1280217", + "duration": "8413.258000", + "filename": "Red Sparrow (2018)/Red Sparrow 2018 720p BRRip MkvCage.Com.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1346349674", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-05-09T05:11:55.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "Red.Sparrow.2018.720p.BRRip.MkvCage.Com" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS-eng": "99789", + "DURATION-eng": "02:20:13.227000000", + "NUMBER_OF_BYTES-eng": "104943500", + "NUMBER_OF_FRAMES-eng": "197185", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-09 05:11:55", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1178523", + "DURATION-eng": "02:20:13.238000000", + "NUMBER_OF_BYTES-eng": "1239399595", + "NUMBER_OF_FRAMES-eng": "201716", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-09 05:11:55" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8413.258000", + "duration_ts": 8413258, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "02:11:54.338000000", + "NUMBER_OF_BYTES-eng": "47082", + "NUMBER_OF_FRAMES-eng": "1600", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v22.0.0 ('At The End Of The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-05-09 05:11:55", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Seven Samurai (1954)/Seven.Samurai.1954.HDTV.720p.x264-iLL.Rus.mkv": { + "format": { + "bit_rate": "5329090", + "duration": "12089.536000", + "filename": "Seven Samurai (1954)/Seven.Samurai.1954.HDTV.720p.x264-iLL.Rus.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8053278460", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-08-18T05:00:11.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Seven.Samurai.1954.HDTV.720p.x264-iLL" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 704, + "coded_width": 960, + "display_aspect_ratio": "15:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 704, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn", + "title": "Shichinin no samurai (Seven Samurai) (1954)" + }, + "time_base": "1/1000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn", + "title": "AC3 384 Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rus", + "title": "AC3 192 Kbps" + }, + "time_base": "1/1000" + } + ] + }, + "Moving Art Forests (2014)/fca74dddd11b413e89c4aee967dd25d2.mkv": { + "format": { + "bit_rate": "8676354", + "duration": "1528.054000", + "filename": "Moving Art Forests (2014)/fca74dddd11b413e89c4aee967dd25d2.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1657242367", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-21T17:42:17.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8390532", + "BPS-eng": "8390532", + "DURATION": "00:25:28.027000000", + "DURATION-eng": "00:25:28.027000000", + "NUMBER_OF_BYTES": "1602620020", + "NUMBER_OF_BYTES-eng": "1602620020", + "NUMBER_OF_FRAMES": "36636", + "NUMBER_OF_FRAMES-eng": "36636", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-21 17:42:17", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-21 17:42:17" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "16", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "FLAC (Free Lossless Audio Codec)", + "codec_name": "flac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "284093", + "BPS-eng": "284093", + "DURATION": "00:25:28.054000000", + "DURATION-eng": "00:25:28.054000000", + "NUMBER_OF_BYTES": "54263842", + "NUMBER_OF_BYTES-eng": "54263842", + "NUMBER_OF_FRAMES": "17907", + "NUMBER_OF_FRAMES-eng": "17907", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-21 17:42:17", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-21 17:42:17", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Kiki's Delivery Service (1989)/Kiki's Delivery Service.mp4": { + "format": { + "bit_rate": "2668209", + "duration": "6182.826667", + "filename": "Kiki's Delivery Service (1989)/Kiki's Delivery Service.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2062134742", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-02-26T09:44:47.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2500253", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1024, + "coded_width": 1920, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6182.675000", + "duration_ts": 148384200, + "has_b_frames": 2, + "height": 1024, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "148236", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-02-26T09:44:47.000000Z", + "handler_name": "Video", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "78794", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6182.826667", + "duration_ts": 148387840, + "index": 1, + "max_bit_rate": "106320", + "nb_frames": "144910", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-02-26T09:46:31.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/24000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "85010", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6182.784000", + "duration_ts": 148386816, + "index": 2, + "max_bit_rate": "110832", + "nb_frames": "144909", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-02-26T09:46:32.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "jpn" + }, + "time_base": "1/24000" + } + ] + }, + "Lean On Me/Lean On Me [FS].avi": { + "format": { + "bit_rate": "902973", + "duration": "6509.175843", + "filename": "Lean On Me/Lean On Me [FS].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734701702", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "763352", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 464, + "coded_width": 624, + "display_aspect_ratio": "39:29", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6509.175843", + "duration_ts": 195080, + "has_b_frames": 1, + "height": 464, + "index": 0, + "level": -99, + "nb_frames": "195080", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "104146813", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "National Parks Adventure (2016)/national.parks.adventure.2016.1080p.web.x264-strife.mkv": { + "format": { + "bit_rate": "7845763", + "duration": "2547.872000", + "filename": "National Parks Adventure (2016)/national.parks.adventure.2016.1080p.web.x264-strife.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "2498750147", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-02-01T07:03:57.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7460726", + "BPS-eng": "7460726", + "DURATION": "00:42:27.462000000", + "DURATION-eng": "00:42:27.462000000", + "NUMBER_OF_BYTES": "2375739633", + "NUMBER_OF_BYTES-eng": "2375739633", + "NUMBER_OF_FRAMES": "61078", + "NUMBER_OF_FRAMES-eng": "61078", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "00:42:27.872000000", + "DURATION-eng": "00:42:27.872000000", + "NUMBER_OF_BYTES": "122297856", + "NUMBER_OF_BYTES-eng": "122297856", + "NUMBER_OF_FRAMES": "79621", + "NUMBER_OF_FRAMES-eng": "79621", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2547.872000", + "duration_ts": 2547872, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38", + "BPS-eng": "38", + "DURATION": "00:41:06.088000000", + "DURATION-eng": "00:41:06.088000000", + "NUMBER_OF_BYTES": "11767", + "NUMBER_OF_BYTES-eng": "11767", + "NUMBER_OF_FRAMES": "314", + "NUMBER_OF_FRAMES-eng": "314", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2547.872000", + "duration_ts": 2547872, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "33", + "BPS-eng": "33", + "DURATION": "00:42:10.903000000", + "DURATION-eng": "00:42:10.903000000", + "NUMBER_OF_BYTES": "10651", + "NUMBER_OF_BYTES-eng": "10651", + "NUMBER_OF_FRAMES": "252", + "NUMBER_OF_FRAMES-eng": "252", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2547.872000", + "duration_ts": 2547872, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "36", + "BPS-eng": "36", + "DURATION": "00:41:42.041000000", + "DURATION-eng": "00:41:42.041000000", + "NUMBER_OF_BYTES": "11288", + "NUMBER_OF_BYTES-eng": "11288", + "NUMBER_OF_FRAMES": "266", + "NUMBER_OF_FRAMES-eng": "266", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2547.872000", + "duration_ts": 2547872, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38", + "BPS-eng": "38", + "DURATION": "00:41:42.083000000", + "DURATION-eng": "00:41:42.083000000", + "NUMBER_OF_BYTES": "11978", + "NUMBER_OF_BYTES-eng": "11978", + "NUMBER_OF_FRAMES": "263", + "NUMBER_OF_FRAMES-eng": "263", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "2547.872000", + "duration_ts": 2547872, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "00:41:42.083000000", + "DURATION-eng": "00:41:42.083000000", + "NUMBER_OF_BYTES": "10934", + "NUMBER_OF_BYTES-eng": "10934", + "NUMBER_OF_FRAMES": "262", + "NUMBER_OF_FRAMES-eng": "262", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.3.0 ('Nouages') 64bit built on Oct 23 2014 13:14:01", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-01 07:03:57", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-01 07:03:57", + "language": "ger" + }, + "time_base": "1/1000" + } + ] + }, + "Turbo (2013)/ceabe275c7804d8392c6cabe3fa0b29c.mkv": { + "format": { + "bit_rate": "6535670", + "duration": "5740.736000", + "filename": "Turbo (2013)/ceabe275c7804d8392c6cabe3fa0b29c.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4689945013", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-10-26T08:56:31.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "X264" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS" + }, + "time_base": "1/1000" + } + ] + }, + "True Romance (1993)/True.Romance.1993.iNTERNAL.720p.BluRay.x264-MOOVEE.mkv": { + "format": { + "bit_rate": "2563633", + "duration": "7261.838000", + "filename": "True Romance (1993)/True.Romance.1993.iNTERNAL.720p.BluRay.x264-MOOVEE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "2327086021", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-03-20T16:36:14.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1874791", + "BPS-eng": "1874791", + "DURATION": "02:01:01.838000000", + "DURATION-eng": "02:01:01.838000000", + "NUMBER_OF_BYTES": "1701803630", + "NUMBER_OF_BYTES-eng": "1701803630", + "NUMBER_OF_FRAMES": "174110", + "NUMBER_OF_FRAMES-eng": "174110", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-20 16:36:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-20 16:36:14", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:01:01.824000000", + "DURATION-eng": "02:01:01.824000000", + "NUMBER_OF_BYTES": "580945920", + "NUMBER_OF_BYTES-eng": "580945920", + "NUMBER_OF_FRAMES": "226932", + "NUMBER_OF_FRAMES-eng": "226932", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-20 16:36:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-20 16:36:14", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7261.838000", + "duration_ts": 7261838, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16943", + "BPS-eng": "16943", + "DURATION": "01:59:45.553000000", + "DURATION-eng": "01:59:45.553000000", + "NUMBER_OF_BYTES": "15218918", + "NUMBER_OF_BYTES-eng": "15218918", + "NUMBER_OF_FRAMES": "3596", + "NUMBER_OF_FRAMES-eng": "3596", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-20 16:36:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-20 16:36:14", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7261.838000", + "duration_ts": 7261838, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13522", + "BPS-eng": "13522", + "DURATION": "01:59:39.255000000", + "DURATION-eng": "01:59:39.255000000", + "NUMBER_OF_BYTES": "12134989", + "NUMBER_OF_BYTES-eng": "12134989", + "NUMBER_OF_FRAMES": "3768", + "NUMBER_OF_FRAMES-eng": "3768", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-20 16:36:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-20 16:36:14", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7261.838000", + "duration_ts": 7261838, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16791", + "BPS-eng": "16791", + "DURATION": "01:59:39.255000000", + "DURATION-eng": "01:59:39.255000000", + "NUMBER_OF_BYTES": "15068480", + "NUMBER_OF_BYTES-eng": "15068480", + "NUMBER_OF_FRAMES": "3822", + "NUMBER_OF_FRAMES-eng": "3822", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.8.0 ('Kuglblids') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-20 16:36:14", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-20 16:36:14", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + } + ] + }, + "Eternal Sunshine of the Spotless Mind (2004)/Eternal Shunshine of the spotless mind.m4v": { + "format": { + "bit_rate": "1610067", + "duration": "6466.645333", + "filename": "Eternal Sunshine of the Spotless Mind (2004)/Eternal Shunshine of the spotless mind.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1301466706", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T05:57:05.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "623369381/25992221", + "bit_rate": "1028958", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "25992221/1246738762", + "codec_type": "video", + "coded_height": 460, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6466.643511", + "duration_ts": 581997916, + "has_b_frames": 1, + "height": 460, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "155089", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:57:05.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6466.624000", + "duration_ts": 310397952, + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "202082", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:57:05.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127695", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6466.645333", + "duration_ts": 310398976, + "index": 2, + "max_bit_rate": "195792", + "nb_frames": "303124", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T05:57:05.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Reno 911 - Miami (2007)/Reno.911!-Miami[2007][Unrated.Edition]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1171722", + "duration": "5008.008008", + "filename": "Reno 911 - Miami (2007)/Reno.911!-Miami[2007][Unrated.Edition]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733499392", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "970222", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 324, + "coded_width": 604, + "display_aspect_ratio": "151:81", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5008.008008", + "duration_ts": 120072, + "has_b_frames": 1, + "height": 324, + "index": 0, + "level": 5, + "nb_frames": "120072", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 604 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "120192192", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Harry Potter And The Chamber Of Secrets (2002)/Harry.Potter.And.The.Chamber.Of.Secrets.2002.1080p.BluRay.DTS.x264-hV.mkv": { + "format": { + "bit_rate": "10961238", + "duration": "9656.182000", + "filename": "Harry Potter And The Chamber Of Secrets (2002)/Harry.Potter.And.The.Chamber.Of.Secrets.2002.1080p.BluRay.DTS.x264-hV.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "13230464021", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-12-12T22:26:42.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9656.182000", + "duration_ts": 9656182, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 2, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Star Trek 9 - Insurrection/Star Trek 09 Insurrection 1998 1280x544.mp4": { + "format": { + "bit_rate": "2236426", + "duration": "6181.845333", + "filename": "Star Trek 9 - Insurrection/Star Trek 09 Insurrection 1998 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1728155428", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-12T05:20:14.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1501778351/62636672", + "bit_rate": "1976240", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "31318336/1501778351", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6181.758911", + "duration_ts": 556358302, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "148214", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-12T05:20:14.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255682", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6181.845333", + "duration_ts": 296728576, + "index": 1, + "max_bit_rate": "341488", + "nb_frames": "289774", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-12T05:20:14.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Interstella 5555 - the 5tory of the 5ecret 5tar 5ystem/Daft Punk - Interstella 5555 - the 5tory of the 5ecret 5tar 5ystem.avi": { + "format": { + "bit_rate": "1401574", + "duration": "3911.880000", + "filename": "Interstella 5555 - the 5tory of the 5ecret 5tar 5ystem/Daft Punk - Interstella 5555 - the 5tory of the 5ecret 5tar 5ystem.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "685348864", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1261579", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 432, + "coded_width": 576, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3911.880000", + "duration_ts": 97797, + "has_b_frames": 0, + "height": 432, + "index": 0, + "level": -99, + "nb_frames": "97797", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127472", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3911.862857", + "duration_ts": 149751, + "index": 1, + "nb_frames": "149751", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "Hudson Hawk/Hudson Hawk.avi": { + "format": { + "bit_rate": "977766", + "duration": "5997.992000", + "filename": "Hudson Hawk/Hudson Hawk.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733079552", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "847836", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 592, + "display_aspect_ratio": "37:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5997.992000", + "duration_ts": 143808, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "143808", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 592 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "117224", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5997.984000", + "duration_ts": 249916, + "index": 1, + "nb_frames": "249916", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Indiana Jones And The Temple Of Doom/Indiana Jones And The Temple Of Doom (WS DVDRip).avi": { + "format": { + "bit_rate": "828112", + "duration": "7090.223557", + "filename": "Indiana Jones And The Temple Of Doom/Indiana Jones And The Temple Of Doom (WS DVDRip).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733937664", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "688204", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 624, + "display_aspect_ratio": "39:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7090.223557", + "duration_ts": 212494, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "212494", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "113442822", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "To Kill a Mockingbird (1962)/To.Kill.a.Mockingbird.1962.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "6057076", + "duration": "7750.701000", + "filename": "To Kill a Mockingbird (1962)/To.Kill.a.Mockingbird.1962.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5868323751", + "start_time": "0.000000", + "tags": { + "encoder": "mkv2rls v1.4 (date: 2011 mar 29)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 696, + "coded_width": 1280, + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 696, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7750.701000", + "duration_ts": 7750701, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Frozen (2013)/f8794ae7b27a4474a02a26fc5a438b3d.mkv": { + "format": { + "bit_rate": "13481713", + "duration": "6133.046000", + "filename": "Frozen (2013)/f8794ae7b27a4474a02a26fc5a438b3d.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "10335496020", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-03-20T09:36:00.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "Frozen.2013.BluRay.1080p.x264.DTS.4Audios-CnSCG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 856, + "coded_width": 1920, + "display_aspect_ratio": "240:107", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 856, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "yaohaofan@CnSCG" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "英语原声" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "公映国语(驴大师混音)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "台配国语" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 4, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "粤语" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6133.046000", + "duration_ts": 551974140, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "MSYH.TTF", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6133.046000", + "duration_ts": 551974140, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "MSYHBD.TTF", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6133.046000", + "duration_ts": 551974140, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "tahoma.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "The Devils Advocate (1997)/The.Devils.Advocate.1997.UNRATED.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "837032", + "duration": "8635.733333", + "filename": "The Devils Advocate (1997)/The.Devils.Advocate.1997.UNRATED.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "903549131", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-05-30T16:15:53.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64519", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8635.733333", + "duration_ts": 414515200, + "index": 0, + "max_bit_rate": "76080", + "nb_frames": "404800", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-30T16:15:53.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "768373", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8635.668708", + "duration_ts": 207256049, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "207049", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-05-30T16:15:57.000000Z", + "handler_name": "The.Devils.Advocate.1997.UNRATED.BluRay.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Tommy Boy/Tommy Boy.mp4": { + "format": { + "bit_rate": "1515050", + "duration": "5822.386689", + "filename": "Tommy Boy/Tommy Boy.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1102651126", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T22:33:19.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1341647399/55954944", + "bit_rate": "1377244", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "27977472/1341647399", + "codec_type": "video", + "coded_height": 480, + "coded_width": 706, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "706:405", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5822.386689", + "duration_ts": 524014802, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "139605", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T22:33:19.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 706 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132534", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5822.357333", + "duration_ts": 279473152, + "index": 1, + "max_bit_rate": "233096", + "nb_frames": "272923", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T22:33:19.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Sleepy Hollow/Sleepy Hollow.avi": { + "format": { + "bit_rate": "928705", + "duration": "6326.743410", + "filename": "Sleepy Hollow/Sleepy Hollow.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734459904", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "799478", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6326.743410", + "duration_ts": 151690, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "151690", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116520", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6326.736000", + "duration_ts": 263614, + "index": 1, + "nb_frames": "263614", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "For The Birds (2000)/for.the.birds.2000.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4651756", + "duration": "205.248000", + "filename": "For The Birds (2000)/for.the.birds.2000.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "119345456", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-27T21:40:42.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "For the Title/For the Title.mp4": { + "format": { + "bit_rate": "2097426", + "duration": "5378.048000", + "filename": "For the Title/For the Title.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1410007282", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-22T06:24:30.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1289430000/53780393", + "bit_rate": "1954164", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "41282947/1979586514", + "codec_type": "video", + "coded_height": 480, + "coded_width": 700, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "140:81", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5378.039300", + "duration_ts": 484023537, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "128943", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T06:24:30.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 700 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "137799", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5378.048000", + "duration_ts": 258146304, + "index": 1, + "max_bit_rate": "277112", + "nb_frames": "252096", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T06:24:30.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Mater And The Ghostlight (2006)/mater.and.the.ghostlight.2006.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4645419", + "duration": "429.504000", + "filename": "Mater And The Ghostlight (2006)/mater.and.the.ghostlight.2006.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "249403274", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T12:34:00.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Chris Rock Tamborine (2018)/Chris.Rock.Tamborine.2018.REAL.PROPER.1080p.WEBRip.x264-AMRAP.mkv": { + "format": { + "bit_rate": "3402867", + "duration": "3896.096000", + "filename": "Chris Rock Tamborine (2018)/Chris.Rock.Tamborine.2018.REAL.PROPER.1080p.WEBRip.x264-AMRAP.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "1657237463", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1008, + "coded_width": 1920, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1008, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3896.096000", + "duration_ts": 3896096, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3896.096000", + "duration_ts": 3896096, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe", + "title": "Swedish" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3896.096000", + "duration_ts": 3896096, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor", + "title": "Norwegian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3896.096000", + "duration_ts": 3896096, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger", + "title": "German" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3896.096000", + "duration_ts": 3896096, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin", + "title": "Finnish" + }, + "time_base": "1/1000" + } + ] + }, + "Battle Los Angeles (2011)/Battle.Los.Angeles.2011.720p.BluRay.DTS.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "8215690", + "duration": "6970.966000", + "filename": "Battle Los Angeles (2011)/Battle.Los.Angeles.2011.720p.BluRay.DTS.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7158912337", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2017-01-25T14:02:39Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 11, + "start_time": "0.011000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)/Dr Strangelove.mkv": { + "format": { + "bit_rate": "2010421", + "duration": "5847.850500", + "filename": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964)/Dr Strangelove.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1469580220", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 432, + "coded_width": 714, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "12733:8676", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 432, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "214:241", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 714 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Thor The Dark World (2013)/Thor The Dark World 2013 1080p BRRip x264 AC3-JYK.mkv": { + "format": { + "bit_rate": "3799119", + "duration": "6723.328000", + "filename": "Thor The Dark World (2013)/Thor The Dark World 2013 1080p BRRip x264 AC3-JYK.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3192841034", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-03-15T12:47:31.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Interview with the Vampire: The Vampire Chronicles (1994)/Interview with the Vampire The Vampire Chronicles (1994) BRRip 720p x264 AAC-Ameet6233.mp4": { + "format": { + "bit_rate": "980048", + "duration": "7353.450000", + "filename": "Interview with the Vampire: The Vampire Chronicles (1994)/Interview with the Vampire The Vampire Chronicles (1994) BRRip 720p x264 AAC-Ameet6233.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "900842661", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-05-14T09:24:50.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "863924", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7353.262583", + "duration_ts": 705913208, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "176302", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-05-14T09:24:50.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7353.450667", + "duration_ts": 352965632, + "index": 1, + "max_bit_rate": "118296", + "nb_frames": "344693", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-05-14T09:25:45.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Hellboy II The Golden Army (2008)/Hellboy.II.The.Golden.Army.2008.720p.nHD.x264-NhaNc3.mkv": { + "format": { + "bit_rate": "2157890", + "duration": "7188.992000", + "filename": "Hellboy II The Golden Army (2008)/Hellboy.II.The.Golden.Army.2008.720p.nHD.x264-NhaNc3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1939131848", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-12-02T21:38:49.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 704, + "coded_width": 960, + "display_aspect_ratio": "651:352", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 704, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "217:160", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 960 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Matrix Revolutions (2003)/The.Matrix.Revolutions.2003.1080p.BluRay.x264-nikt0.mkv": { + "format": { + "bit_rate": "6208723", + "duration": "7755.962000", + "filename": "The Matrix Revolutions (2003)/The.Matrix.Revolutions.2003.1080p.BluRay.x264-nikt0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6019327696", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-02-01T02:24:47Z", + "ENCODER": "Lavf57.7.2", + "title": "The.Matrix.Revolutions.2003.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS": "5758804", + "BPS-eng": "5758804", + "DURATION": "02:09:15.957000000", + "DURATION-eng": "02:09:15.957000000", + "NUMBER_OF_BYTES": "5583130460", + "NUMBER_OF_BYTES-eng": "5583130460", + "NUMBER_OF_FRAMES": "185957", + "NUMBER_OF_FRAMES-eng": "185957", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-02 00:12:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-02 00:12:36" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "02:09:15.936000000", + "DURATION-eng": "02:09:15.936000000", + "NUMBER_OF_BYTES": "434332416", + "NUMBER_OF_BYTES-eng": "434332416", + "NUMBER_OF_FRAMES": "242373", + "NUMBER_OF_FRAMES-eng": "242373", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-02 00:12:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-02 00:12:36", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7755.962000", + "duration_ts": 7755962, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "39", + "BPS-eng": "39", + "DURATION": "02:07:54.334000000", + "DURATION-eng": "02:07:54.334000000", + "NUMBER_OF_BYTES": "38101", + "NUMBER_OF_BYTES-eng": "38101", + "NUMBER_OF_FRAMES": "1110", + "NUMBER_OF_FRAMES-eng": "1110", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-02 00:12:36", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-02 00:12:36", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Grinch (2018)/0d8c22ac739145c8b4570013cf832adc.mkv": { + "format": { + "bit_rate": "5223925", + "duration": "5149.824000", + "filename": "The Grinch (2018)/0d8c22ac739145c8b4570013cf832adc.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3362786903", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-22T09:53:56.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4581934", + "DURATION-eng": "01:25:49.811000000", + "NUMBER_OF_BYTES-eng": "2949512229", + "NUMBER_OF_FRAMES-eng": "123472", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-22 09:53:56" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:25:49.824000000", + "NUMBER_OF_BYTES-eng": "411985920", + "NUMBER_OF_FRAMES-eng": "160932", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-22 09:53:56", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5149.824000", + "duration_ts": 5149824, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "72", + "DURATION-eng": "01:25:44.051000000", + "NUMBER_OF_BYTES-eng": "46645", + "NUMBER_OF_FRAMES-eng": "1764", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-22 09:53:56", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + } + ] + }, + "9 (2009)/9 (Nine) 2009 720p BluRay nHD x264 NhaNc3.mkv": { + "format": { + "bit_rate": "2596441", + "duration": "4751.520000", + "filename": "9 (2009)/9 (Nine) 2009 720p BluRay nHD x264 NhaNc3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1542130492", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-11-29T14:36:03.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "224000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4751.520000", + "duration_ts": 4751520, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "City Hall (1996)/City Hall (1996).m4v": { + "format": { + "bit_rate": "1412340", + "duration": "6691.541333", + "filename": "City Hall (1996)/City Hall (1996).m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1181342087", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-10-09T23:32:32.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "9120625/380198", + "bit_rate": "1241586", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "190099/9120625", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6691.484800", + "duration_ts": 602233632, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "160523", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-09T23:32:32.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165536", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6691.541333", + "duration_ts": 321193984, + "index": 1, + "max_bit_rate": "248608", + "nb_frames": "313666", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-09T23:32:32.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6691.541333", + "duration_ts": 602238720, + "index": 2, + "nb_frames": "30", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-09T23:32:32.000000Z", + "language": "und" + }, + "time_base": "1/90000" + } + ] + }, + "Apollo 13 (1995)/Apollo.13.1995.REMASTERED.720p.BluRay.x264-SiNNERS.mkv": { + "format": { + "bit_rate": "5128885", + "duration": "8391.050000", + "filename": "Apollo 13 (1995)/Apollo.13.1995.REMASTERED.720p.BluRay.x264-SiNNERS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5379591391", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:19:51.050000000", + "ENCODER": "Lavc57.64.100 libx264", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:19:51.050000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8391.050000", + "duration_ts": 8391050, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:14:00.073000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Lifted (2006)/lifted.2006.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4648451", + "duration": "302.304000", + "filename": "Lifted (2006)/lifted.2006.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "175655686", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T03:02:06.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Stranger Than Fiction/Stranger.Than.Fiction.2006.nDVD.x264.NhaNc3.mkv": { + "format": { + "bit_rate": "1107351", + "duration": "6775.446000", + "filename": "Stranger Than Fiction/Stranger.Than.Fiction.2006.nDVD.x264.NhaNc3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "937850302", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-20T21:08:31.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Stranger.Than.Fiction.2006.nDVDRip.x264.NhaNc3 NADSc0m" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "display_aspect_ratio": "54:29", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "6:5", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Stranger.Than.Fiction.2006.nDVDRip.x264.NhaNc3" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Stranger.Than.Fiction.2006.nDVDRip.x264.NhaNc3" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Stranger.Than.Fiction.2006.nDVDRip.x264.NhaNc3" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6775.446000", + "duration_ts": 609790140, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Balloonl.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6775.446000", + "duration_ts": 609790140, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "NORDIC_.TTF", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6775.446000", + "duration_ts": 609790140, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CREEDMOR.TTF", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6775.446000", + "duration_ts": 609790140, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Balloonl_0.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6775.446000", + "duration_ts": 609790140, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CREEDMOR_0.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Dredd (2012)/Dredd.2012.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2241301", + "duration": "5751.786667", + "filename": "Dredd (2012)/Dredd.2012.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1611435849", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-12-25T15:06:30.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2141336", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5751.746000", + "duration_ts": 552167616, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "137904", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-25T15:06:30.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95866", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5751.786667", + "duration_ts": 276085760, + "index": 1, + "max_bit_rate": "139072", + "nb_frames": "269615", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-25T15:06:42.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Zombieland (2009)/Zombieland (2009) DVDRIP, xvid.avi": { + "format": { + "bit_rate": "1111434", + "duration": "5262.144000", + "filename": "Zombieland (2009)/Zombieland (2009) DVDRIP, xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731066368", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "969170", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 624, + "display_aspect_ratio": "39:16", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5262.137137", + "duration_ts": 126165, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "126165", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129552", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5262.144000", + "duration_ts": 219256, + "index": 1, + "nb_frames": "219256", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Glass (2019)/13ad2e213f58478c82285ce229c69382.mkv": { + "format": { + "bit_rate": "4952971", + "duration": "7741.792000", + "filename": "Glass (2019)/13ad2e213f58478c82285ce229c69382.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4793109174", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-02T04:08:42.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 802, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "960:401", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 802, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4567175", + "BPS-eng": "4567175", + "DURATION": "02:09:01.734000000", + "DURATION-eng": "02:09:01.734000000", + "NUMBER_OF_BYTES": "4419732704", + "NUMBER_OF_BYTES-eng": "4419732704", + "NUMBER_OF_FRAMES": "185616", + "NUMBER_OF_FRAMES-eng": "185616", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-02 04:08:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-02 04:08:42", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "02:09:01.792000000", + "DURATION-eng": "02:09:01.792000000", + "NUMBER_OF_BYTES": "371606016", + "NUMBER_OF_BYTES-eng": "371606016", + "NUMBER_OF_FRAMES": "241931", + "NUMBER_OF_FRAMES-eng": "241931", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-04-02 04:08:42", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-02 04:08:42", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "About Schmidt (2002)/About Schmidt.mkv": { + "format": { + "bit_rate": "529170", + "duration": "28469.572000", + "filename": "About Schmidt (2002)/About Schmidt.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "1883155863", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-07-17T18:58:57.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "About Schmidt" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 552, + "coded_width": 720, + "display_aspect_ratio": "2595:1403", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "has_b_frames": 0, + "height": 552, + "index": 0, + "level": 3, + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "173:122", + "start_pts": 40, + "start_time": "0.040000", + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "109998", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "28469.572000", + "duration_ts": 28469572, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "28469.572000", + "duration_ts": 28469572, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "28469.572000", + "duration_ts": 28469572, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "28469.572000", + "duration_ts": 28469572, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + } + ] + }, + "The Incredible Hulk (2008)/The.Incredible.Hulk[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "911513", + "duration": "6458.400000", + "filename": "The Incredible Hulk (2008)/The.Incredible.Hulk[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735864832", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "789808", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 278, + "coded_width": 668, + "display_aspect_ratio": "334:139", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6458.400000", + "duration_ts": 161460, + "has_b_frames": 1, + "height": 278, + "index": 0, + "level": 5, + "nb_frames": "161460", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 668 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "269100", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Hardcore Henry (2015)/0f694eef21ea47e9b3bbdd363efd364b.720p.mkv": { + "format": { + "bit_rate": "4780313", + "duration": "5806.217000", + "filename": "Hardcore Henry (2015)/0f694eef21ea47e9b3bbdd363efd364b.720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3469442445", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14812991", + "DURATION": "01:36:46.217000000", + "DURATION-eng": "01:36:46.217000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES-eng": "10750930453", + "NUMBER_OF_FRAMES-eng": "139210", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-29 21:36:46", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION": "01:36:46.016000000", + "DURATION-eng": "01:36:46.016000000", + "NUMBER_OF_BYTES-eng": "464481280", + "NUMBER_OF_FRAMES-eng": "181438", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-29 21:36:46", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5806.217000", + "duration_ts": 5806217, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "31", + "DURATION": "01:29:43.092000000", + "DURATION-eng": "01:28:11.287000000", + "NUMBER_OF_BYTES-eng": "21027", + "NUMBER_OF_FRAMES-eng": "651", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-29 21:36:46", + "language": "rum", + "title": "Romanian" + }, + "time_base": "1/1000" + } + ] + }, + "Welcome To Marwen (2018)/c0b51121ca5b4a518d009d41c2bc984a.mkv": { + "format": { + "bit_rate": "6208490", + "duration": "6956.640000", + "filename": "Welcome To Marwen (2018)/c0b51121ca5b4a518d009d41c2bc984a.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5398779192", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-09T14:11:06.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "Welcome.to.Marwen.2018.1080p.BluRay.x264-nikt0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5758568", + "DURATION-eng": "01:55:56.617000000", + "NUMBER_OF_BYTES-eng": "5007519528", + "NUMBER_OF_FRAMES-eng": "166792", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-09 14:11:06", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:55:56.640000000", + "NUMBER_OF_BYTES-eng": "389571840", + "NUMBER_OF_FRAMES-eng": "217395", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-09 14:11:06", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6956.640000", + "duration_ts": 6956640, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "63", + "DURATION-eng": "01:46:09.396000000", + "NUMBER_OF_BYTES-eng": "50570", + "NUMBER_OF_FRAMES-eng": "1663", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v31.0.0 ('Dolores In A Shoestand') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-09 14:11:06", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Evil Dead (2013)/evil.dead.2013.unrated.720p.bluray.remux.avc.dts-hd ma 5.1-lazy.mkv": { + "format": { + "bit_rate": "6817051", + "duration": "5786.782000", + "filename": "Evil Dead (2013)/evil.dead.2013.unrated.720p.bluray.remux.avc.dts-hd ma 5.1-lazy.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 33, + "probe_score": 100, + "size": "4931099122", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "23907407", + "BPS-eng": "23907407", + "DURATION": "01:36:26.781000000", + "DURATION-eng": "01:36:26.781000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "17293366748", + "NUMBER_OF_BYTES-eng": "17293366748", + "NUMBER_OF_FRAMES": "138744", + "NUMBER_OF_FRAMES-eng": "138744", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3964440", + "BPS-eng": "3964440", + "DURATION": "01:36:26.782000000", + "DURATION-eng": "01:36:26.784000000", + "NUMBER_OF_BYTES": "2867670096", + "NUMBER_OF_BYTES-eng": "2867670096", + "NUMBER_OF_FRAMES": "542511", + "NUMBER_OF_FRAMES-eng": "542511", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "23308", + "BPS-eng": "23308", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:35:28.306000000", + "NUMBER_OF_BYTES": "16689659", + "NUMBER_OF_BYTES-eng": "16689659", + "NUMBER_OF_FRAMES": "1945", + "NUMBER_OF_FRAMES-eng": "1945", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16235", + "BPS-eng": "16235", + "DURATION": "01:36:20.400000000", + "DURATION-eng": "01:34:10.854000000", + "NUMBER_OF_BYTES": "11468398", + "NUMBER_OF_BYTES-eng": "11468398", + "NUMBER_OF_FRAMES": "1300", + "NUMBER_OF_FRAMES-eng": "1300", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "23274", + "BPS-eng": "23274", + "DURATION": "01:36:20.400000000", + "DURATION-eng": "01:35:28.265000000", + "NUMBER_OF_BYTES": "16665318", + "NUMBER_OF_BYTES-eng": "16665318", + "NUMBER_OF_FRAMES": "1944", + "NUMBER_OF_FRAMES-eng": "1944", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16243", + "BPS-eng": "16243", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "11472118", + "NUMBER_OF_BYTES-eng": "11472118", + "NUMBER_OF_FRAMES": "1300", + "NUMBER_OF_FRAMES-eng": "1300", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8077", + "BPS-eng": "8077", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "5705300", + "NUMBER_OF_BYTES-eng": "5705300", + "NUMBER_OF_FRAMES": "1344", + "NUMBER_OF_FRAMES-eng": "1344", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "11968", + "BPS-eng": "11968", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "8453847", + "NUMBER_OF_BYTES-eng": "8453847", + "NUMBER_OF_FRAMES": "1396", + "NUMBER_OF_FRAMES-eng": "1396", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14786", + "BPS-eng": "14786", + "DURATION": "01:36:20.316000000", + "DURATION-eng": "01:34:10.770000000", + "NUMBER_OF_BYTES": "10444685", + "NUMBER_OF_BYTES-eng": "10444685", + "NUMBER_OF_FRAMES": "1344", + "NUMBER_OF_FRAMES-eng": "1344", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14673", + "BPS-eng": "14673", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "10364801", + "NUMBER_OF_BYTES-eng": "10364801", + "NUMBER_OF_FRAMES": "1344", + "NUMBER_OF_FRAMES-eng": "1344", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13423", + "BPS-eng": "13423", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "9480478", + "NUMBER_OF_BYTES-eng": "9480478", + "NUMBER_OF_FRAMES": "1008", + "NUMBER_OF_FRAMES-eng": "1008", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12723", + "BPS-eng": "12723", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "8985975", + "NUMBER_OF_BYTES-eng": "8985975", + "NUMBER_OF_FRAMES": "1192", + "NUMBER_OF_FRAMES-eng": "1192", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "est" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14142", + "BPS-eng": "14142", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "9987983", + "NUMBER_OF_BYTES-eng": "9987983", + "NUMBER_OF_FRAMES": "1346", + "NUMBER_OF_FRAMES-eng": "1346", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13992", + "BPS-eng": "13992", + "DURATION": "01:36:21.651000000", + "DURATION-eng": "01:34:12.105000000", + "NUMBER_OF_BYTES": "9885707", + "NUMBER_OF_BYTES-eng": "9885707", + "NUMBER_OF_FRAMES": "1346", + "NUMBER_OF_FRAMES-eng": "1346", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "18033", + "BPS-eng": "18033", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "12736419", + "NUMBER_OF_BYTES-eng": "12736419", + "NUMBER_OF_FRAMES": "1342", + "NUMBER_OF_FRAMES-eng": "1342", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16790", + "BPS-eng": "16790", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "11858051", + "NUMBER_OF_BYTES-eng": "11858051", + "NUMBER_OF_FRAMES": "1328", + "NUMBER_OF_FRAMES-eng": "1328", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "11384", + "BPS-eng": "11384", + "DURATION": "01:36:20.400000000", + "DURATION-eng": "01:34:10.854000000", + "NUMBER_OF_BYTES": "8041417", + "NUMBER_OF_BYTES-eng": "8041417", + "NUMBER_OF_FRAMES": "1346", + "NUMBER_OF_FRAMES-eng": "1346", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16404", + "BPS-eng": "16404", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "11585449", + "NUMBER_OF_BYTES-eng": "11585449", + "NUMBER_OF_FRAMES": "1340", + "NUMBER_OF_FRAMES-eng": "1340", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15635", + "BPS-eng": "15635", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "11042909", + "NUMBER_OF_BYTES-eng": "11042909", + "NUMBER_OF_FRAMES": "1260", + "NUMBER_OF_FRAMES-eng": "1260", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "ice" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15663", + "BPS-eng": "15663", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "11063774", + "NUMBER_OF_BYTES-eng": "11063774", + "NUMBER_OF_FRAMES": "1346", + "NUMBER_OF_FRAMES-eng": "1346", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "10989", + "BPS-eng": "10989", + "DURATION": "01:36:20.149000000", + "DURATION-eng": "01:34:10.311000000", + "NUMBER_OF_BYTES": "7762063", + "NUMBER_OF_BYTES-eng": "7762063", + "NUMBER_OF_FRAMES": "1216", + "NUMBER_OF_FRAMES-eng": "1216", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "11339", + "BPS-eng": "11339", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "8009556", + "NUMBER_OF_BYTES-eng": "8009556", + "NUMBER_OF_FRAMES": "1348", + "NUMBER_OF_FRAMES-eng": "1348", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "13441", + "BPS-eng": "13441", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "9492788", + "NUMBER_OF_BYTES-eng": "9492788", + "NUMBER_OF_FRAMES": "1178", + "NUMBER_OF_FRAMES-eng": "1178", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15661", + "BPS-eng": "15661", + "DURATION": "01:36:20.400000000", + "DURATION-eng": "01:34:11.021000000", + "NUMBER_OF_BYTES": "11063200", + "NUMBER_OF_BYTES-eng": "11063200", + "NUMBER_OF_FRAMES": "1316", + "NUMBER_OF_FRAMES-eng": "1316", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15955", + "BPS-eng": "15955", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "11268736", + "NUMBER_OF_BYTES-eng": "11268736", + "NUMBER_OF_FRAMES": "1252", + "NUMBER_OF_FRAMES-eng": "1252", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14980", + "BPS-eng": "14980", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "10581331", + "NUMBER_OF_BYTES-eng": "10581331", + "NUMBER_OF_FRAMES": "1348", + "NUMBER_OF_FRAMES-eng": "1348", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15986", + "BPS-eng": "15986", + "DURATION": "01:36:19.691000000", + "DURATION-eng": "01:34:10.187000000", + "NUMBER_OF_BYTES": "11290809", + "NUMBER_OF_BYTES-eng": "11290809", + "NUMBER_OF_FRAMES": "1286", + "NUMBER_OF_FRAMES-eng": "1286", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "16207", + "BPS-eng": "16207", + "DURATION": "01:36:19.565000000", + "DURATION-eng": "01:34:10.019000000", + "NUMBER_OF_BYTES": "11446547", + "NUMBER_OF_BYTES-eng": "11446547", + "NUMBER_OF_FRAMES": "1346", + "NUMBER_OF_FRAMES-eng": "1346", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "14971", + "BPS-eng": "14971", + "DURATION": "01:36:21.651000000", + "DURATION-eng": "01:34:12.105000000", + "NUMBER_OF_BYTES": "10577753", + "NUMBER_OF_BYTES-eng": "10577753", + "NUMBER_OF_FRAMES": "1260", + "NUMBER_OF_FRAMES-eng": "1260", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12910", + "BPS-eng": "12910", + "DURATION": "01:36:21.651000000", + "DURATION-eng": "01:34:12.105000000", + "NUMBER_OF_BYTES": "9121567", + "NUMBER_OF_BYTES-eng": "9121567", + "NUMBER_OF_FRAMES": "1190", + "NUMBER_OF_FRAMES-eng": "1190", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "12004", + "BPS-eng": "12004", + "DURATION": "01:36:20.400000000", + "DURATION-eng": "01:34:10.854000000", + "NUMBER_OF_BYTES": "8479301", + "NUMBER_OF_BYTES-eng": "8479301", + "NUMBER_OF_FRAMES": "1354", + "NUMBER_OF_FRAMES-eng": "1354", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "15740", + "BPS-eng": "15740", + "DURATION": "01:36:20.358000000", + "DURATION-eng": "01:34:10.812000000", + "NUMBER_OF_BYTES": "11118630", + "NUMBER_OF_BYTES-eng": "11118630", + "NUMBER_OF_FRAMES": "1342", + "NUMBER_OF_FRAMES-eng": "1342", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5786.782000", + "duration_ts": 5786782, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "408", + "BPS-eng": "408", + "DURATION": "01:19:31.809000000", + "DURATION-eng": "00:58:35.471000000", + "NUMBER_OF_BYTES": "179366", + "NUMBER_OF_BYTES-eng": "179366", + "NUMBER_OF_FRAMES": "26", + "NUMBER_OF_FRAMES-eng": "26", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-02 01:48:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-02 01:48:33", + "language": "jpn" + }, + "time_base": "1/1000" + } + ] + }, + "A Futile And Stupid Gesture (2018)/fc452c24f7b8416898aaf43cf8100a5d.mkv": { + "format": { + "bit_rate": "6552148", + "duration": "6116.768000", + "filename": "A Futile And Stupid Gesture (2018)/fc452c24f7b8416898aaf43cf8100a5d.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 28, + "probe_score": 100, + "size": "5009746716", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-08-01T22:21:22.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 674, + "coded_width": 1280, + "display_aspect_ratio": "640:337", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 674, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5905712", + "DURATION-eng": "01:41:56.486000000", + "NUMBER_OF_BYTES-eng": "4515276150", + "NUMBER_OF_FRAMES-eng": "146649", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:41:56.768000000", + "NUMBER_OF_BYTES-eng": "489341440", + "NUMBER_OF_FRAMES-eng": "191149", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "94", + "DURATION-eng": "01:40:58.469000000", + "NUMBER_OF_BYTES-eng": "71704", + "NUMBER_OF_FRAMES-eng": "1878", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "99", + "DURATION-eng": "01:41:16.612000000", + "NUMBER_OF_BYTES-eng": "75947", + "NUMBER_OF_FRAMES-eng": "1955", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "155", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "112294", + "NUMBER_OF_FRAMES-eng": "1801", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "165", + "DURATION-eng": "01:40:55.341000000", + "NUMBER_OF_BYTES-eng": "125107", + "NUMBER_OF_FRAMES-eng": "1878", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "bul" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "86", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "62857", + "NUMBER_OF_FRAMES-eng": "1632", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "78", + "DURATION-eng": "01:40:42.078000000", + "NUMBER_OF_BYTES-eng": "59445", + "NUMBER_OF_FRAMES-eng": "1766", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "147", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "106616", + "NUMBER_OF_FRAMES-eng": "1780", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "94", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "68077", + "NUMBER_OF_FRAMES-eng": "1774", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "78", + "DURATION-eng": "01:41:11.691000000", + "NUMBER_OF_BYTES-eng": "59775", + "NUMBER_OF_FRAMES-eng": "1802", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "83", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "60333", + "NUMBER_OF_FRAMES-eng": "1737", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "82", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "59417", + "NUMBER_OF_FRAMES-eng": "1726", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "135", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "98385", + "NUMBER_OF_FRAMES-eng": "1767", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:41:11.691000000", + "NUMBER_OF_BYTES-eng": "61208", + "NUMBER_OF_FRAMES-eng": "1738", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "73", + "DURATION-eng": "01:41:11.566000000", + "NUMBER_OF_BYTES-eng": "55663", + "NUMBER_OF_FRAMES-eng": "1747", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "90", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "65457", + "NUMBER_OF_FRAMES-eng": "1798", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "77", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "55963", + "NUMBER_OF_FRAMES-eng": "1718", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "79", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "57867", + "NUMBER_OF_FRAMES-eng": "1521", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "76", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "55089", + "NUMBER_OF_FRAMES-eng": "1693", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "58646", + "NUMBER_OF_FRAMES-eng": "1772", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "87", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "63225", + "NUMBER_OF_FRAMES-eng": "1775", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "88", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "63736", + "NUMBER_OF_FRAMES-eng": "1781", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "58510", + "NUMBER_OF_FRAMES-eng": "1522", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "194", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "140789", + "NUMBER_OF_FRAMES-eng": "1801", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "88", + "DURATION-eng": "01:41:11.691000000", + "NUMBER_OF_BYTES-eng": "67470", + "NUMBER_OF_FRAMES-eng": "1817", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "88", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "63924", + "NUMBER_OF_FRAMES-eng": "1801", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6116.768000", + "duration_ts": 6116768, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "91", + "DURATION-eng": "01:36:33.246000000", + "NUMBER_OF_BYTES-eng": "66071", + "NUMBER_OF_FRAMES-eng": "1796", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-08-01 22:21:22", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Ne Te Retourne Pas (2009)/Ne Te Retourne Pas.mp4": { + "format": { + "bit_rate": "1949409", + "duration": "6603.520000", + "filename": "Ne Te Retourne Pas (2009)/Ne Te Retourne Pas.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1609120233", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2010-01-31T22:40:00.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "1699536", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6603.314996", + "duration_ts": 441715550, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "158322", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-01-29T12:37:50.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "246197", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6603.520000", + "duration_ts": 316968960, + "index": 1, + "max_bit_rate": "387696", + "nb_frames": "309540", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-01-31T22:40:48.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Last Action Hero (1993)/Last.Action.Hero.1993.720p.Bluray.X264-DIMENSION.mkv": { + "format": { + "bit_rate": "6347616", + "duration": "7854.847000", + "filename": "Last Action Hero (1993)/Last.Action.Hero.1993.720p.Bluray.X264-DIMENSION.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6232444124", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:54.841000000", + "ENCODER": "Lavc57.64.101 libx264", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:10:54.847000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7854.847000", + "duration_ts": 7854847, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:03:21.059000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Y Tu Mama Tambien/y tu mama tambien.avi": { + "format": { + "bit_rate": "972953", + "duration": "6067.960000", + "filename": "Y Tu Mama Tambien/y tu mama tambien.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "737980208", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "843409", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6067.960000", + "duration_ts": 151699, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": -99, + "nb_frames": "151699", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116640", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6067.728000", + "duration_ts": 252822, + "index": 1, + "nb_frames": "252822", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Resident Evil Apocalypse (2004)/Resident Evil 2.avi": { + "format": { + "bit_rate": "1206543", + "duration": "5628.628629", + "filename": "Resident Evil Apocalypse (2004)/Resident Evil 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "848898048", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1076917", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5628.628629", + "duration_ts": 134952, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "134952", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116920", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5628.624000", + "duration_ts": 234526, + "index": 1, + "nb_frames": "234526", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Die Hard With a Vengeance/die.hard.3.-.cd2.avi": { + "format": { + "bit_rate": "1604108", + "duration": "3644.600000", + "filename": "Die Hard With a Vengeance/die.hard.3.-.cd2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "730791936", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.4.13" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1210399", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3644.600000", + "duration_ts": 91115, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 3, + "nb_frames": "91115", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "174940800", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Black Snake Moan (2007)/Black.Snake.Moan.2006.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1924510", + "duration": "6934.058333", + "filename": "Black Snake Moan (2007)/Black.Snake.Moan.2006.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1668083455", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-08-23T14:49:22.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1824458", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6933.927000", + "duration_ts": 665656992, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "166248", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-08-23T14:49:22.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95941", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6934.058667", + "duration_ts": 332834816, + "index": 1, + "max_bit_rate": "126400", + "nb_frames": "325034", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-08-23T14:51:34.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Weird Science/Weird Science.avi": { + "format": { + "bit_rate": "1346478", + "duration": "5617.872000", + "filename": "Weird Science/Weird Science.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "945543168", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1219256", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 672, + "display_aspect_ratio": "42:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5617.867868", + "duration_ts": 134694, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "134694", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114520", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5617.872000", + "duration_ts": 234078, + "index": 1, + "nb_frames": "234078", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Dave Chappelle The Age Of Spin (2017)/Dave.Chappelle.The.Age.of.Spin.2017.720p.WEBRip.X264-DEFLATE.mkv": { + "format": { + "bit_rate": "3013896", + "duration": "4040.480000", + "filename": "Dave Chappelle The Age Of Spin (2017)/Dave.Chappelle.The.Age.of.Spin.2017.720p.WEBRip.X264-DEFLATE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "1522198613", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:20.078000000", + "ENCODER": "Lavc57.64.101 libx264", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:20.480000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4040.480000", + "duration_ts": 4040480, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:09.776000000", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4040.480000", + "duration_ts": 4040480, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:10.860000000", + "language": "eng", + "title": "English (SDH)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4040.480000", + "duration_ts": 4040480, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:14.989000000", + "language": "fre", + "title": "French" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4040.480000", + "duration_ts": 4040480, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:14.989000000", + "language": "ita", + "title": "Italian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4040.480000", + "duration_ts": 4040480, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:07:14.989000000", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + } + ] + }, + "Slums of Beverly Hills/Slums of Beverly Hills (1998)(Marisa Tomei)AVI.avi": { + "format": { + "bit_rate": "1011635", + "duration": "5460.001668", + "filename": "Slums of Beverly Hills/Slums of Beverly Hills (1998)(Marisa Tomei)AVI.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "690441216", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "906207", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 656, + "display_aspect_ratio": "41:24", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5460.001668", + "duration_ts": 130909, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "130909", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "65519570", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio Stream" + }, + "time_base": "1/12000" + } + ] + }, + "Men At Work/Men.At.Work.DVDrip.XviD.avi": { + "format": { + "bit_rate": "1340922", + "duration": "5680.440000", + "filename": "Men At Work/Men.At.Work.DVDrip.XviD.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "952128410", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1200020", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 576, + "coded_width": 720, + "display_aspect_ratio": "5:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5680.440000", + "duration_ts": 142011, + "has_b_frames": 0, + "height": 576, + "index": 0, + "level": 3, + "nb_frames": "142011", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "236684", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Brave (2012)/8ab81176032b41b996c855b55c5cb5c4.mkv": { + "format": { + "bit_rate": "16847034", + "duration": "5615.360000", + "filename": "Brave (2012)/8ab81176032b41b996c855b55c5cb5c4.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "11825270270", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-12T22:10:55.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1608, + "coded_width": 3840, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "1920:803", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1606, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7396648", + "DURATION-eng": "01:33:35.026000000", + "NUMBER_OF_BYTES-eng": "5191546770", + "NUMBER_OF_FRAMES-eng": "134626", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-12 22:10:55" + }, + "time_base": "1/1000", + "width": 3840 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "512000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "896000", + "DURATION-eng": "01:33:35.360000000", + "NUMBER_OF_BYTES-eng": "628920320", + "NUMBER_OF_FRAMES-eng": "175480", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-12 22:10:55", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "TrueHD", + "codec_name": "truehd", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "s32", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7827129", + "DURATION-eng": "01:33:34.027000000", + "NUMBER_OF_BYTES-eng": "5492714864", + "NUMBER_OF_FRAMES-eng": "6736832", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-12 22:10:55", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:33:34.048000000", + "NUMBER_OF_BYTES-eng": "449123840", + "NUMBER_OF_FRAMES-eng": "175439", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-12 22:10:55", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5615.360000", + "duration_ts": 5615360, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "24758", + "DURATION-eng": "01:32:21.536000000", + "NUMBER_OF_BYTES-eng": "17150263", + "NUMBER_OF_FRAMES-eng": "1772", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-12 22:10:55", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5615.360000", + "duration_ts": 5615360, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "36299", + "DURATION-eng": "01:32:21.494000000", + "NUMBER_OF_BYTES-eng": "25144364", + "NUMBER_OF_FRAMES-eng": "2802", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v37.0.0 ('Leave It') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-12 22:10:55", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Cast Away/Cast Away.m4v": { + "format": { + "bit_rate": "1891551", + "duration": "8627.936000", + "filename": "Cast Away/Cast Away.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2040022960", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-06T22:16:58.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "555059549/23152652", + "bit_rate": "1303764", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "11576326/555059549", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "421:232", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8627.921656", + "duration_ts": 776512949, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "206845", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "421:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T22:16:58.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "134671", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8627.925333", + "duration_ts": 414140416, + "index": 1, + "max_bit_rate": "209896", + "nb_frames": "404434", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T22:16:58.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "8627.936000", + "duration_ts": 414140928, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "269623", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-06T22:16:58.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Full Metal Jacket (1987)/1776f8e2fb614a6fb77a66cde601bb45.mkv": { + "format": { + "bit_rate": "5719802", + "duration": "6990.931000", + "filename": "Full Metal Jacket (1987)/1776f8e2fb614a6fb77a66cde601bb45.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4998343324", + "start_time": "0.000000", + "tags": { + "Writing frontend": "StaxRip v2.0.0.0", + "creation_time": "2019-01-03T01:13:59.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "5147595", + "DURATION-eng": "01:56:30.859000000", + "NUMBER_OF_BYTES-eng": "4498264091", + "NUMBER_OF_FRAMES-eng": "167613", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 01:13:59" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS-eng": "460868", + "DURATION-eng": "01:56:30.890000000", + "NUMBER_OF_BYTES-eng": "402735136", + "NUMBER_OF_FRAMES-eng": "327698", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 01:13:59", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 40, + "start_time": "0.040000", + "tags": { + "BPS-eng": "79999", + "DURATION-eng": "01:56:30.891000000", + "NUMBER_OF_BYTES-eng": "69908865", + "NUMBER_OF_FRAMES-eng": "163849", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 01:13:59", + "language": "eng", + "title": "Commentary by screenwriter Jay Cocks and actors Adam Baldwin, Vincent D'onofrio and Lee Ermey" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.931000", + "duration_ts": 6990931, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "32481", + "DURATION-eng": "01:54:53.303000000", + "NUMBER_OF_BYTES-eng": "27988032", + "NUMBER_OF_FRAMES-eng": "2774", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 01:13:59", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6990.931000", + "duration_ts": 6990931, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "33994", + "DURATION-eng": "01:54:53.303000000", + "NUMBER_OF_BYTES-eng": "29291377", + "NUMBER_OF_FRAMES-eng": "2839", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-03 01:13:59", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Finding Nemo (2003)/Finding Nemo 2003 1080p BluRay DD5.1 x264-EbP.mkv": { + "format": { + "bit_rate": "10794587", + "duration": "6053.984000", + "filename": "Finding Nemo (2003)/Finding Nemo 2003 1080p BluRay DD5.1 x264-EbP.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "8168782128", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-24T07:31:09.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Finding Nemo (2003)" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6053.984000", + "duration_ts": 6053984, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6053.984000", + "duration_ts": 6053984, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Babylon 5 - Thirdspace/3 - Thirdspace.avi": { + "format": { + "bit_rate": "1024565", + "duration": "5652.652653", + "filename": "Babylon 5 - Thirdspace/3 - Thirdspace.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "723939328", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "889592", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5652.652653", + "duration_ts": 135528, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": -99, + "nb_frames": "135528", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "235527", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Cloverfield Paradox (2018)/e800769d1f5d4ab4bf753c64a95ad687.mkv": { + "format": { + "bit_rate": "5365219", + "duration": "6108.948000", + "filename": "The Cloverfield Paradox (2018)/e800769d1f5d4ab4bf753c64a95ad687.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 28, + "probe_score": 100, + "size": "4096981153", + "start_time": "0.000000", + "tags": { + "Writing frontend": "StaxRip v1.7.0.6", + "creation_time": "2019-02-07T07:58:28.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8", + "title": "The Cloverfield Paradox" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_range": "tv", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4496556", + "BPS-eng": "4496556", + "DURATION": "01:41:48.936000000", + "DURATION-eng": "01:41:48.936000000", + "NUMBER_OF_BYTES": "3433646958", + "NUMBER_OF_BYTES-eng": "3433646958", + "NUMBER_OF_FRAMES": "146468", + "NUMBER_OF_FRAMES-eng": "146468", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 20, + "start_time": "0.020000", + "tags": { + "BPS": "586256", + "BPS-eng": "586256", + "DURATION": "01:41:48.928000000", + "DURATION-eng": "01:41:48.928000000", + "NUMBER_OF_BYTES": "447674926", + "NUMBER_OF_BYTES-eng": "447674926", + "NUMBER_OF_FRAMES": "286356", + "NUMBER_OF_FRAMES-eng": "286356", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34452", + "BPS-eng": "34452", + "DURATION": "01:35:59.628000000", + "DURATION-eng": "01:35:59.628000000", + "NUMBER_OF_BYTES": "24804483", + "NUMBER_OF_BYTES-eng": "24804483", + "NUMBER_OF_FRAMES": "2389", + "NUMBER_OF_FRAMES-eng": "2389", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "852", + "BPS-eng": "852", + "DURATION": "00:47:40.525000000", + "DURATION-eng": "00:47:40.525000000", + "NUMBER_OF_BYTES": "304949", + "NUMBER_OF_BYTES-eng": "304949", + "NUMBER_OF_FRAMES": "84", + "NUMBER_OF_FRAMES-eng": "84", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "41013", + "BPS-eng": "41013", + "DURATION": "01:36:20.567000000", + "DURATION-eng": "01:36:20.567000000", + "NUMBER_OF_BYTES": "29635004", + "NUMBER_OF_BYTES-eng": "29635004", + "NUMBER_OF_FRAMES": "2690", + "NUMBER_OF_FRAMES-eng": "2690", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "17549", + "BPS-eng": "17549", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "13375027", + "NUMBER_OF_BYTES-eng": "13375027", + "NUMBER_OF_FRAMES": "2469", + "NUMBER_OF_FRAMES-eng": "2469", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "26686", + "BPS-eng": "26686", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "20338471", + "NUMBER_OF_BYTES-eng": "20338471", + "NUMBER_OF_FRAMES": "2231", + "NUMBER_OF_FRAMES-eng": "2231", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "32585", + "BPS-eng": "32585", + "DURATION": "01:41:37.966000000", + "DURATION-eng": "01:41:37.966000000", + "NUMBER_OF_BYTES": "24837802", + "NUMBER_OF_BYTES-eng": "24837802", + "NUMBER_OF_FRAMES": "2259", + "NUMBER_OF_FRAMES-eng": "2259", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2418", + "BPS-eng": "2418", + "DURATION": "01:37:23.921000000", + "DURATION-eng": "01:37:23.921000000", + "NUMBER_OF_BYTES": "1767044", + "NUMBER_OF_BYTES-eng": "1767044", + "NUMBER_OF_FRAMES": "204", + "NUMBER_OF_FRAMES-eng": "204", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28428", + "BPS-eng": "28428", + "DURATION": "01:41:37.966000000", + "DURATION-eng": "01:41:37.966000000", + "NUMBER_OF_BYTES": "21669436", + "NUMBER_OF_BYTES-eng": "21669436", + "NUMBER_OF_FRAMES": "2441", + "NUMBER_OF_FRAMES-eng": "2441", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2478", + "BPS-eng": "2478", + "DURATION": "01:37:23.921000000", + "DURATION-eng": "01:37:23.921000000", + "NUMBER_OF_BYTES": "1810703", + "NUMBER_OF_BYTES-eng": "1810703", + "NUMBER_OF_FRAMES": "204", + "NUMBER_OF_FRAMES-eng": "204", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29849", + "BPS-eng": "29849", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "22748603", + "NUMBER_OF_BYTES-eng": "22748603", + "NUMBER_OF_FRAMES": "2325", + "NUMBER_OF_FRAMES-eng": "2325", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2462", + "BPS-eng": "2462", + "DURATION": "01:37:22.920000000", + "DURATION-eng": "01:37:22.920000000", + "NUMBER_OF_BYTES": "1798496", + "NUMBER_OF_BYTES-eng": "1798496", + "NUMBER_OF_FRAMES": "204", + "NUMBER_OF_FRAMES-eng": "204", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28427", + "BPS-eng": "28427", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "21665188", + "NUMBER_OF_BYTES-eng": "21665188", + "NUMBER_OF_FRAMES": "2389", + "NUMBER_OF_FRAMES-eng": "2389", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2346", + "BPS-eng": "2346", + "DURATION": "01:37:22.920000000", + "DURATION-eng": "01:37:22.920000000", + "NUMBER_OF_BYTES": "1713989", + "NUMBER_OF_BYTES-eng": "1713989", + "NUMBER_OF_FRAMES": "204", + "NUMBER_OF_FRAMES-eng": "204", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28958", + "BPS-eng": "28958", + "DURATION": "01:41:37.966000000", + "DURATION-eng": "01:41:37.966000000", + "NUMBER_OF_BYTES": "22073250", + "NUMBER_OF_BYTES-eng": "22073250", + "NUMBER_OF_FRAMES": "2437", + "NUMBER_OF_FRAMES-eng": "2437", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2403", + "BPS-eng": "2403", + "DURATION": "01:37:23.921000000", + "DURATION-eng": "01:37:23.921000000", + "NUMBER_OF_BYTES": "1755461", + "NUMBER_OF_BYTES-eng": "1755461", + "NUMBER_OF_FRAMES": "204", + "NUMBER_OF_FRAMES-eng": "204", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25313", + "BPS-eng": "25313", + "DURATION": "01:35:59.671000000", + "DURATION-eng": "01:35:59.671000000", + "NUMBER_OF_BYTES": "18224834", + "NUMBER_OF_BYTES-eng": "18224834", + "NUMBER_OF_FRAMES": "2560", + "NUMBER_OF_FRAMES-eng": "2560", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "27357", + "BPS-eng": "27357", + "DURATION": "01:41:37.966000000", + "DURATION-eng": "01:41:37.966000000", + "NUMBER_OF_BYTES": "20852946", + "NUMBER_OF_BYTES-eng": "20852946", + "NUMBER_OF_FRAMES": "2497", + "NUMBER_OF_FRAMES-eng": "2497", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "27722", + "BPS-eng": "27722", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "21127515", + "NUMBER_OF_BYTES-eng": "21127515", + "NUMBER_OF_FRAMES": "2115", + "NUMBER_OF_FRAMES-eng": "2115", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25489", + "BPS-eng": "25489", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "19426159", + "NUMBER_OF_BYTES-eng": "19426159", + "NUMBER_OF_FRAMES": "2137", + "NUMBER_OF_FRAMES-eng": "2137", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "532", + "BPS-eng": "532", + "DURATION": "01:35:17.878000000", + "DURATION-eng": "01:35:17.878000000", + "NUMBER_OF_BYTES": "380931", + "NUMBER_OF_BYTES-eng": "380931", + "NUMBER_OF_FRAMES": "34", + "NUMBER_OF_FRAMES-eng": "34", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28889", + "BPS-eng": "28889", + "DURATION": "01:41:37.966000000", + "DURATION-eng": "01:41:37.966000000", + "NUMBER_OF_BYTES": "22020783", + "NUMBER_OF_BYTES-eng": "22020783", + "NUMBER_OF_FRAMES": "2409", + "NUMBER_OF_FRAMES-eng": "2409", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2387", + "BPS-eng": "2387", + "DURATION": "01:37:23.921000000", + "DURATION-eng": "01:37:23.921000000", + "NUMBER_OF_BYTES": "1743882", + "NUMBER_OF_BYTES-eng": "1743882", + "NUMBER_OF_FRAMES": "204", + "NUMBER_OF_FRAMES-eng": "204", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29201", + "BPS-eng": "29201", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "22254704", + "NUMBER_OF_BYTES-eng": "22254704", + "NUMBER_OF_FRAMES": "2503", + "NUMBER_OF_FRAMES-eng": "2503", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "27350", + "BPS-eng": "27350", + "DURATION": "01:41:36.965000000", + "DURATION-eng": "01:41:36.965000000", + "NUMBER_OF_BYTES": "20844741", + "NUMBER_OF_BYTES-eng": "20844741", + "NUMBER_OF_FRAMES": "2137", + "NUMBER_OF_FRAMES-eng": "2137", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28200", + "BPS-eng": "28200", + "DURATION": "01:41:37.966000000", + "DURATION-eng": "01:41:37.966000000", + "NUMBER_OF_BYTES": "21495476", + "NUMBER_OF_BYTES-eng": "21495476", + "NUMBER_OF_FRAMES": "2427", + "NUMBER_OF_FRAMES-eng": "2427", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6108.948000", + "duration_ts": 6108948, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2145", + "BPS-eng": "2145", + "DURATION": "01:29:53.972000000", + "DURATION-eng": "01:29:53.972000000", + "NUMBER_OF_BYTES": "1446708", + "NUMBER_OF_BYTES-eng": "1446708", + "NUMBER_OF_FRAMES": "210", + "NUMBER_OF_FRAMES-eng": "210", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v20.0.0 ('I Am The Sun') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-02-07 07:58:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-02-07 07:58:28", + "language": "jpn" + }, + "time_base": "1/1000" + } + ] + }, + "The Signal (2014)/The.Signal.2014.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1074651", + "duration": "5831.850000", + "filename": "The Signal (2014)/The.Signal.2014.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "783400721", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-07-01T16:10:13.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "97326", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5831.850667", + "duration_ts": 279928832, + "index": 0, + "max_bit_rate": "157808", + "nb_frames": "273368", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-07-01T16:04:58.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "973636", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5831.742583", + "duration_ts": 139961822, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "139822", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-07-01T16:10:14.000000Z", + "handler_name": "264@GPAC0.5.1-DEV-rev5243M", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "12 Monkeys/12 Monkeys.avi": { + "format": { + "bit_rate": "1068759", + "duration": "7768.886125", + "filename": "12 Monkeys/12 Monkeys.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1037883392", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "931404", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 368, + "coded_width": 656, + "display_aspect_ratio": "41:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7768.886125", + "duration_ts": 186267, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "186267", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "323704", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Hancock (2008)/Hancock[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1063963", + "duration": "5535.285285", + "filename": "Hancock (2008)/Hancock[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736167936", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "926685", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 284, + "coded_width": 692, + "display_aspect_ratio": "173:71", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5535.285285", + "duration_ts": 132714, + "has_b_frames": 1, + "height": 284, + "index": 0, + "level": 5, + "nb_frames": "132714", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 692 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "230586", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Madagascar - Escape 2 Africa (2008)/Madagascar-Escape.2.Africa[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1096413", + "duration": "5362.153820", + "filename": "Madagascar - Escape 2 Africa (2008)/Madagascar-Escape.2.Africa[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734892032", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "959112", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 362, + "coded_width": 660, + "display_aspect_ratio": "330:181", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5362.153820", + "duration_ts": 128563, + "has_b_frames": 1, + "height": 362, + "index": 0, + "level": 5, + "nb_frames": "128563", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 660 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "223410", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Babylon 5 - A Call to Arms/5 - A Call to Arms.avi": { + "format": { + "bit_rate": "1030037", + "duration": "5622.288956", + "filename": "Babylon 5 - A Call to Arms/5 - A Call to Arms.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "723896320", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "895063", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 640, + "display_aspect_ratio": "40:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5622.288956", + "duration_ts": 134800, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": -99, + "nb_frames": "134800", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "234262", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Chicago/Chicago.m4v": { + "format": { + "bit_rate": "1924990", + "duration": "6805.381889", + "filename": "Chicago/Chicago.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1637536863", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T03:26:26.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1468521000/61248437", + "bit_rate": "1339542", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "16313401/782275373", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "423:232", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6805.381889", + "duration_ts": 612484370, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "163169", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "47:40", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T03:26:26.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132201", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6805.376000", + "duration_ts": 326658048, + "index": 1, + "max_bit_rate": "216584", + "nb_frames": "319002", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T03:26:26.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6805.376000", + "duration_ts": 326658048, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "212668", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T03:26:26.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Dune/Dune.1984.Extended.WS.DVDRip.XviD-FRAGMENT.CD1.avi": { + "format": { + "bit_rate": "1054768", + "duration": "5551.634968", + "filename": "Dune/Dune.1984.Extended.WS.DVDRip.XviD-FRAGMENT.CD1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731961344", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "901895", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5551.634968", + "duration_ts": 133106, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "133106", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "141336", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5551.584000", + "duration_ts": 231316, + "index": 1, + "nb_frames": "231316", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Robot Jox/Robot.Jox.1990.Xvid-SER.avi": { + "format": { + "bit_rate": "1155236", + "duration": "5083.036292", + "filename": "Robot Jox/Robot.Jox.1990.Xvid-SER.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734013440", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1020227", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5083.036292", + "duration_ts": 121871, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "121871", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "211793", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Over the Hedge/Over the Hedge.avi": { + "format": { + "bit_rate": "1174563", + "duration": "4996.746747", + "filename": "Over the Hedge/Over the Hedge.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733624320", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "973074", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 600, + "display_aspect_ratio": "15:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4996.746747", + "duration_ts": 119802, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "119802", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "119914511", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Lola Rennt (1998)/3d900f815c3c44cfa26d806a55564e08.mkv": { + "format": { + "bit_rate": "14184681", + "duration": "4790.816000", + "filename": "Lola Rennt (1998)/3d900f815c3c44cfa26d806a55564e08.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 11, + "probe_score": 100, + "size": "8494524812", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-02-23T08:02:36.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger", + "title": "DTS@1.5Mbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS@1.5Mbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4790.816000", + "duration_ts": 4790816, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Commentary" + }, + "time_base": "1/1000" + } + ] + }, + "Up In The Air (2009)/Up In The Air (2009) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi": { + "format": { + "bit_rate": "1791827", + "duration": "6561.353020", + "filename": "Up In The Air (2009)/Up In The Air (2009) DVDRip XviD-MAXSPEED www.torentz.3xforum.ro.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1469601294", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1334483", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 608, + "display_aspect_ratio": "19:10", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6561.353020", + "duration_ts": 157315, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "157315", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "367416640", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Traffic/Traffic.mkv": { + "format": { + "bit_rate": "2255290", + "duration": "8836.773000", + "filename": "Traffic/Traffic.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2491186781", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 460, + "coded_width": 718, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "2513:1360", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 460, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "161:136", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Ender's Game (2013)/Ender's.Game.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2077309", + "duration": "6828.863333", + "filename": "Ender's Game (2013)/Ender's.Game.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1773207712", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-01-30T11:48:04.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1979491", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6828.780292", + "duration_ts": 163890727, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "163727", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-01-30T11:48:04.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93708", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6828.864000", + "duration_ts": 327785472, + "index": 1, + "max_bit_rate": "105992", + "nb_frames": "320103", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-01-30T11:48:12.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Oceans 12/Oceans 12 Disc 2.avi": { + "format": { + "bit_rate": "1719122", + "duration": "3394.686353", + "filename": "Oceans 12/Oceans 12 Disc 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "729485312", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1261747", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3394.686353", + "duration_ts": 81391, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "81391", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "190100708", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "The Day The Earth Stood Still (2008)/The Day The Earth Stood Still.mp4": { + "format": { + "bit_rate": "2641155", + "duration": "6215.871667", + "filename": "The Day The Earth Stood Still (2008)/The Day The Earth Stood Still.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2052135139", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2010-10-01T15:30:30.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "66893/2790", + "bit_rate": "2247275", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1395/66893", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6215.634999", + "duration_ts": 415782472, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "149026", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "66893/2790", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-01T07:44:38.000000Z", + "handler_name": "HDLiTE", + "language": "und" + }, + "time_base": "1/66893", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "389832", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6215.872000", + "duration_ts": 298361856, + "index": 1, + "max_bit_rate": "456120", + "nb_frames": "291369", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-01T15:32:21.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Abyss (1989)/78dbd632f1da4a519f05a747713fb542.mkv": { + "format": { + "bit_rate": "13406764", + "duration": "8422.748000", + "filename": "The Abyss (1989)/78dbd632f1da4a519f05a747713fb542.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "14115224701", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-22T22:31:02.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "12764656", + "DURATION-eng": "02:20:22.748000000", + "NUMBER_OF_BYTES-eng": "13439185796", + "NUMBER_OF_FRAMES-eng": "201944", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-22 22:31:02" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "02:20:22.720000000", + "NUMBER_OF_BYTES-eng": "673817600", + "NUMBER_OF_FRAMES-eng": "263210", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-22 22:31:02", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8422.748000", + "duration_ts": 8422748, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "02:20:01.542000000", + "NUMBER_OF_BYTES-eng": "49989", + "NUMBER_OF_FRAMES-eng": "1844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v32.0.0 ('Astral Progressions') 32-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-22 22:31:02", + "language": "eng", + "title": "English [SDH]" + }, + "time_base": "1/1000" + } + ] + }, + "The Bourne Identity (2002)/The.Bourne.Identity.2002.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "9681964", + "duration": "7117.056000", + "filename": "The Bourne Identity (2002)/The.Bourne.Identity.2002.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "8613385531", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-11-05T08:24:49.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "@7515Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS@1536Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur", + "title": "AC3@640Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7117.056000", + "duration_ts": 7117056, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7117.056000", + "duration_ts": 7117056, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "The Girl In The Spiders Web (2018)/The Girl In The Spider's Web 1080p WEB-DL.mkv": { + "format": { + "bit_rate": "4879624", + "duration": "6924.480000", + "filename": "The Girl In The Spiders Web (2018)/The Girl In The Spider's Web 1080p WEB-DL.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4223607634", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-17T06:48:08.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "www.newzbin.org" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 796, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "480:199", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 796, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4493720", + "DURATION-eng": "01:55:24.418000000", + "NUMBER_OF_BYTES-eng": "3889550193", + "NUMBER_OF_FRAMES-eng": "166020", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-17 06:48:08", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:55:24.480000000", + "NUMBER_OF_BYTES-eng": "332375040", + "NUMBER_OF_FRAMES-eng": "216390", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-17 06:48:08", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6924.480000", + "duration_ts": 6924480, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "20", + "DURATION-eng": "01:53:49.621000000", + "NUMBER_OF_BYTES-eng": "17091", + "NUMBER_OF_FRAMES-eng": "506", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-17 06:48:08", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "PNG (Portable Network Graphics) image", + "codec_name": "png", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 300, + "coded_width": 400, + "color_range": "pc", + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6924.480000", + "duration_ts": 623203200, + "has_b_frames": 0, + "height": 300, + "index": 3, + "level": -99, + "pix_fmt": "rgba", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "logo.png", + "mimetype": "image/png" + }, + "time_base": "1/90000", + "width": 400 + } + ] + }, + "Higher Learning/Higher Learning CD2.avi": { + "format": { + "bit_rate": "1491917", + "duration": "3897.939606", + "filename": "Higher Learning/Higher Learning CD2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "726925312", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1360914", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3897.939606", + "duration_ts": 93457, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "93457", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "118256", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3897.888000", + "duration_ts": 162412, + "index": 1, + "nb_frames": "162412", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Zoolander 2 (2016)/Zoolander.2.2016.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "8449241", + "duration": "6106.549000", + "filename": "Zoolander 2 (2016)/Zoolander.2.2016.720p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "6449463404", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "20400:8509", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "255:254", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:41:46.476000000", + "ENCODER": "Lavc57.64.101 libx264" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:41:46.549000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Shrek 3/-shrek3-xvid.avi": { + "format": { + "bit_rate": "1055921", + "duration": "5562.765542", + "filename": "Shrek 3/-shrek3-xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734230528", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "912531", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5562.765542", + "duration_ts": 133373, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "133373", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130640", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5562.264000", + "duration_ts": 231761, + "index": 1, + "nb_frames": "231761", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Wreck-It Ralph (2012)/9d25927d5e9c4e6c89fcebb5a06d83c5.mkv": { + "format": { + "bit_rate": "8521404", + "duration": "6073.526000", + "filename": "Wreck-It Ralph (2012)/9d25927d5e9c4e6c89fcebb5a06d83c5.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "6469371838", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-28T18:54:15.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 804, + "index": 0, + "level": 153, + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "6924085", + "DURATION-eng": "01:41:13.526000000", + "NUMBER_OF_BYTES-eng": "5256701439", + "NUMBER_OF_FRAMES-eng": "145619", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-28 18:54:15", + "language": "eng", + "title": "Wreck-It.Ralph.2012.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1508999", + "DURATION-eng": "01:41:13.526000000", + "NUMBER_OF_BYTES-eng": "1145618716", + "NUMBER_OF_FRAMES-eng": "569393", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-28 18:54:15", + "language": "eng", + "title": "Wreck-It.Ralph.2012.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6073.526000", + "duration_ts": 6073526, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47848", + "DURATION-eng": "01:40:14.800000000", + "NUMBER_OF_BYTES-eng": "35974887", + "NUMBER_OF_FRAMES-eng": "3748", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-28 18:54:15", + "language": "eng", + "title": "Wreck-It.Ralph.2012.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6073.526000", + "duration_ts": 6073526, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42056", + "DURATION-eng": "01:32:14.153000000", + "NUMBER_OF_BYTES-eng": "29093050", + "NUMBER_OF_FRAMES-eng": "2992", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-28 18:54:15", + "language": "eng", + "title": "Wreck-It.Ralph.2012.HEVC.1080p.BluRay.DTS.x265-LEGi0N" + }, + "time_base": "1/1000" + } + ] + }, + "Miss Peregrines Home For Peculiar Children (2016)/Miss.Peregrines.Home.for.Peculiar.Children.2016.720p.BluRay.DTS.x264-FuzerHD.mkv": { + "format": { + "bit_rate": "8213759", + "duration": "7615.731000", + "filename": "Miss Peregrines Home For Peculiar Children (2016)/Miss.Peregrines.Home.for.Peculiar.Children.2016.720p.BluRay.DTS.x264-FuzerHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7819223142", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2016-12-06T19:56:15Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Room On The Broom (2012)/Room.On.The.Broom.2012.HDTV.x264-C4TV.mp4": { + "format": { + "bit_rate": "810781", + "duration": "1504.340000", + "filename": "Room On The Broom (2012)/Room.On.The.Broom.2012.HDTV.x264-C4TV.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "152461325", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-12-24T17:28:49.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "670220", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 404, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "1504.320000", + "duration_ts": 37608000, + "has_b_frames": 2, + "height": 404, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "37608", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2000, + "start_time": "0.080000", + "tags": { + "creation_time": "2012-12-24T17:28:49.000000Z", + "handler_name": "Video", + "language": "und" + }, + "time_base": "1/25000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "136343", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "1504.341333", + "duration_ts": 72208384, + "index": 1, + "max_bit_rate": "180256", + "nb_frames": "70516", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-24T17:28:50.000000Z", + "handler_name": "English", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Family (2013)/wtf.avi": { + "format": { + "bit_rate": "1885506", + "duration": "6416.840000", + "filename": "The Family (2013)/wtf.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1512374272", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1491802", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6416.840000", + "duration_ts": 160421, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "160421", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "308008320", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Harry Potter And The Prisoner Of Azkaban (2004)/Harry Potter and the Prisoner of Azkaban (2004) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv": { + "format": { + "bit_rate": "1995549", + "duration": "8502.240000", + "filename": "Harry Potter And The Prisoner Of Azkaban (2004)/Harry Potter and the Prisoner of Azkaban (2004) 720p Dual Audio BluRay - KartiKing - DMMovies.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "2120830359", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.101", + "title": "Harry Potter And The Prisoner Of Azkaban (2004) - KartiKing - Movies.DigitalMaza.Org" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "958424", + "BPS-eng": "958424", + "DURATION": "02:21:42.119000000", + "DURATION-eng": "02:21:42.119000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "1018579618", + "NUMBER_OF_BYTES-eng": "1018579618", + "NUMBER_OF_FRAMES": "203847", + "NUMBER_OF_FRAMES-eng": "203847", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 12:06:10", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 12:06:10", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "02:21:41.952000000", + "DURATION-eng": "02:21:41.952000000", + "NUMBER_OF_BYTES": "136031232", + "NUMBER_OF_BYTES-eng": "136031232", + "NUMBER_OF_FRAMES": "265686", + "NUMBER_OF_FRAMES-eng": "265686", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 12:06:10", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 12:06:10", + "language": "hin", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "96000", + "BPS-eng": "96000", + "DURATION": "02:21:42.240000000", + "DURATION-eng": "02:21:42.240000000", + "NUMBER_OF_BYTES": "102026880", + "NUMBER_OF_BYTES-eng": "102026880", + "NUMBER_OF_FRAMES": "265695", + "NUMBER_OF_FRAMES-eng": "265695", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 12:06:10", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 12:06:10", + "language": "eng", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.240000", + "duration_ts": 8502240, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "49", + "BPS-eng": "49", + "DURATION": "02:21:19.142000000", + "DURATION-eng": "02:20:44.769000000", + "NUMBER_OF_BYTES": "52091", + "NUMBER_OF_BYTES-eng": "52091", + "NUMBER_OF_FRAMES": "1398", + "NUMBER_OF_FRAMES-eng": "1398", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 12:06:10", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 12:06:10", + "language": "eng", + "title": "eng subs - KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.240000", + "duration_ts": 8502240, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "00:00:19.922000000", + "DURATION-eng": "00:00:13.000000000", + "NUMBER_OF_BYTES": "51", + "NUMBER_OF_BYTES-eng": "51", + "NUMBER_OF_FRAMES": "2", + "NUMBER_OF_FRAMES-eng": "2", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-01-25 12:06:10", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-01-25 12:06:10", + "title": "KartiKing - Movies.DigitalMaza.Org" + }, + "time_base": "1/1000" + } + ] + }, + "Spaceballs/Spaceballs.mp4": { + "format": { + "bit_rate": "953360", + "duration": "5770.347911", + "filename": "Spaceballs/Spaceballs.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "687652363", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T11:48:06.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "778151250/32458207", + "bit_rate": "783277", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "32458207/1556302500", + "codec_type": "video", + "coded_height": 342, + "coded_width": 718, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "2872:1539", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5770.347911", + "duration_ts": 519331312, + "has_b_frames": 1, + "height": 342, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "138338", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "8:9", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T11:48:06.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 718 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164941", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5770.304000", + "duration_ts": 276974592, + "index": 1, + "max_bit_rate": "286696", + "nb_frames": "270483", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T11:48:06.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Pride And Prejudice And Zombies (2016)/Pride.and.Prejudice.and.Zombies.2016.720p.WEBRip.V2.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1316979", + "duration": "6451.743000", + "filename": "Pride And Prejudice And Zombies (2016)/Pride.and.Prejudice.and.Zombies.2016.720p.WEBRip.V2.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1062101622", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-05-11T00:05:41.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "Pride.and.Prejudice.and.Zombies.2016.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "154687000/6451743", + "bit_rate": "1149810", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "6451743/309374000", + "codec_type": "video", + "coded_height": 530, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:198", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6451.743000", + "duration_ts": 580656870, + "has_b_frames": 2, + "height": 530, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "154687", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "25387:25344", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-11T00:05:41.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160075", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6451.691000", + "duration_ts": 309681168, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "302423", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-11T00:05:41.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "71", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6451.743000", + "duration_ts": 580656870, + "height": 60, + "index": 2, + "nb_frames": "2754", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-11T00:05:41.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1282 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6451.743000", + "duration_ts": 6451743, + "index": 3, + "nb_frames": "16", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-11T00:05:41.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Any Given Sunday (1999)/Any.Given.Sunday.DIRECTORS.CUT.1999.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1914743", + "duration": "9432.960000", + "filename": "Any Given Sunday (1999)/Any.Given.Sunday.DIRECTORS.CUT.1999.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2257712671", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-11-07T16:45:30.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1815092", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9430.921500", + "duration_ts": 905368464, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "226116", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-11-07T16:45:30.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95948", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9432.960000", + "duration_ts": 452782080, + "index": 1, + "max_bit_rate": "127032", + "nb_frames": "442170", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-11-07T16:47:57.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Star Trek 6 - Undiscovered Country/Star Trek 06 Undiscovered Country 1991 1280x544.mp4": { + "format": { + "bit_rate": "2240938", + "duration": "6598.613333", + "filename": "Star Trek 6 - Undiscovered Country/Star Trek 06 Undiscovered Country 1991 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1848385645", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-11T02:14:13.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1962557827/81855016", + "bit_rate": "1980678", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "40927508/1962557827", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6598.550289", + "duration_ts": 593869526, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "158207", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-11T02:14:13.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255767", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6598.613333", + "duration_ts": 316733440, + "index": 1, + "max_bit_rate": "354648", + "nb_frames": "309310", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-11T02:14:13.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Superbad (2007) Unrated/Superbad.2007.Unrated.Extended.Special.Edition.Bluray.720p.DTS.x264-CHD.mkv": { + "format": { + "bit_rate": "5266789", + "duration": "7120.107000", + "filename": "Superbad (2007) Unrated/Superbad.2007.Unrated.Extended.Special.Edition.Bluray.720p.DTS.x264-CHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4687513025", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-04-22T15:42:37.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Bloodsport/Bloodsport dvd rip Xvid.Rets.avi": { + "format": { + "bit_rate": "1109009", + "duration": "5294.928000", + "filename": "Bloodsport/Bloodsport dvd rip Xvid.Rets.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734015488", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "977490", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5294.920000", + "duration_ts": 132373, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "132373", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "118608", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5294.928000", + "duration_ts": 220622, + "index": 1, + "nb_frames": "220622", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Ghostbusters (2016)/Ghostbusters.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1389056", + "duration": "6998.464000", + "filename": "Ghostbusters (2016)/Ghostbusters.2016.720p.WEBRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1215157897", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-09-22T05:15:27.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "Ghostbusters.2016.1080p.WEB-DL.AAC2.0.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "83897000/3499207", + "bit_rate": "1225103", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "3499207/167794000", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6998.414000", + "duration_ts": 629857260, + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "167794", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-22T05:15:27.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "156819", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6998.464000", + "duration_ts": 335926272, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "328053", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-22T05:15:27.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6998.464000", + "duration_ts": 629861760, + "height": 60, + "index": 2, + "nb_frames": "4242", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-22T05:15:27.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6998.464000", + "duration_ts": 6998464, + "index": 3, + "nb_frames": "16", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-22T05:15:27.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Sicko/Sicko[2007]DvDrip[Eng]-aXXo.avi": { + "format": { + "bit_rate": "796326", + "duration": "7392.392392", + "filename": "Sicko/Sicko[2007]DvDrip[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735844352", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "691030", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 312, + "coded_width": 572, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7392.392392", + "duration_ts": 177240, + "has_b_frames": 1, + "height": 312, + "index": 0, + "level": 5, + "nb_frames": "177240", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 572 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "307982", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Snatch (2000)/a6686cbe3c4c45eeaf0809598aeadfb3.mkv": { + "format": { + "bit_rate": "15227812", + "duration": "6166.208000", + "filename": "Snatch (2000)/a6686cbe3c4c45eeaf0809598aeadfb3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "11737232634", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-10-18T02:10:44.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Video: x264_L4.1 @ 13526 Kbps" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Audio: English DTS 5.1 @ 1.5 Mbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Commentary: English Dolby Digital 2.0 @ 192 Kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6166.208000", + "duration_ts": 6166208, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6166.208000", + "duration_ts": 6166208, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "Chinese Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6166.208000", + "duration_ts": 6166208, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi", + "title": "Chinese Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Elysium (2013)/Elysium.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2149196", + "duration": "6575.636667", + "filename": "Elysium (2013)/Elysium.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1766542199", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-11-26T02:16:26.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2051415", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6575.569000", + "duration_ts": 157813656, + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "157656", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-11-26T02:16:26.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93719", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6575.637333", + "duration_ts": 315630592, + "index": 1, + "max_bit_rate": "104440", + "nb_frames": "308233", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-11-26T02:16:45.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "BlacKkKlansman (2018)/5eb7f8ff4eaa4bb0adbb07fb4b56092b.mkv": { + "format": { + "bit_rate": "4998945", + "duration": "8089.504000", + "filename": "BlacKkKlansman (2018)/5eb7f8ff4eaa4bb0adbb07fb4b56092b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5054873359", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-10-23T04:08:08.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 802, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "960:401", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 802, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4613133", + "BPS-eng": "4613133", + "DURATION": "02:14:49.456000000", + "DURATION-eng": "02:14:49.456000000", + "NUMBER_OF_BYTES": "4664717290", + "NUMBER_OF_BYTES-eng": "4664717290", + "NUMBER_OF_FRAMES": "193953", + "NUMBER_OF_FRAMES-eng": "193953", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-23 04:08:08", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-23 04:08:08", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "02:14:49.504000000", + "DURATION-eng": "02:14:49.504000000", + "NUMBER_OF_BYTES": "388296192", + "NUMBER_OF_BYTES-eng": "388296192", + "NUMBER_OF_FRAMES": "252797", + "NUMBER_OF_FRAMES-eng": "252797", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-23 04:08:08", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-23 04:08:08", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Life Aquatic with Steve Zissou (2004)/Life Aquatic.avi": { + "format": { + "bit_rate": "1324372", + "duration": "7131.506507", + "filename": "The Life Aquatic with Steve Zissou (2004)/Life Aquatic.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1180596224", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1174512", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 720, + "display_aspect_ratio": "9:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7131.506507", + "duration_ts": 170985, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 3, + "nb_frames": "170985", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "137152", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7131.504000", + "duration_ts": 297146, + "index": 1, + "nb_frames": "297146", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Rabbit Proof Fence/Rabbit.Proof.Fence.avi": { + "format": { + "bit_rate": "1080935", + "duration": "5392.280000", + "filename": "Rabbit Proof Fence/Rabbit.Proof.Fence.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "728588288", + "start_time": "0.000000", + "tags": { + "ISBJ": "Rabbit Proof Fence", + "artist": "Phillip Noyce", + "comment": "A DiAMOND LASTS FOREVER", + "copyright": "Doris Pilkington", + "encoder": "Nandub v1.0rc2", + "title": "Rabbit Proof Fence" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "943662", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5392.280000", + "duration_ts": 134807, + "has_b_frames": 0, + "height": 256, + "index": 0, + "level": -99, + "nb_frames": "134807", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124360", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5392.272000", + "duration_ts": 224678, + "index": 1, + "nb_frames": "224678", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Bumblebee (2018)/2b3a5f0490984f5bacbd16e98c1488c0.mkv": { + "format": { + "bit_rate": "5503178", + "duration": "6861.642000", + "filename": "Bumblebee (2018)/2b3a5f0490984f5bacbd16e98c1488c0.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4720105013", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-19T04:09:18.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1072, + "coded_width": 1912, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "239:134", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1072, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1912 + } + ] + }, + "X-Men Days Of Future Past (2014)/X-Men Days Of Future Past (2014) 720p x264 En-Hi-Ta-Te-Ur AAC 5.1 Subs.mkv": { + "format": { + "bit_rate": "1960995", + "duration": "7895.369000", + "filename": "X-Men Days Of Future Past (2014)/X-Men Days Of Future Past (2014) 720p x264 En-Hi-Ta-Te-Ur AAC 5.1 Subs.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "1935348084", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-08-16T23:54:09.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "992744", + "BPS-eng": "992744", + "DURATION": "02:11:35.346000000", + "DURATION-eng": "02:11:35.346000000", + "NUMBER_OF_BYTES": "979757954", + "NUMBER_OF_BYTES-eng": "979757954", + "NUMBER_OF_FRAMES": "189299", + "NUMBER_OF_FRAMES-eng": "189299", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "191578", + "BPS-eng": "191578", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "189072283", + "NUMBER_OF_BYTES-eng": "189072283", + "NUMBER_OF_FRAMES": "370095", + "NUMBER_OF_FRAMES-eng": "370095", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "191578", + "BPS-eng": "191578", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "189072284", + "NUMBER_OF_BYTES-eng": "189072284", + "NUMBER_OF_FRAMES": "370095", + "NUMBER_OF_FRAMES-eng": "370095", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "hin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "191578", + "BPS-eng": "191578", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "189072284", + "NUMBER_OF_BYTES-eng": "189072284", + "NUMBER_OF_FRAMES": "370095", + "NUMBER_OF_FRAMES-eng": "370095", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "tam" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 4, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "191578", + "BPS-eng": "191578", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "189072283", + "NUMBER_OF_BYTES-eng": "189072283", + "NUMBER_OF_FRAMES": "370095", + "NUMBER_OF_FRAMES-eng": "370095", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "tel" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 5, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "191578", + "BPS-eng": "191578", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "189072284", + "NUMBER_OF_BYTES-eng": "189072284", + "NUMBER_OF_FRAMES": "370095", + "NUMBER_OF_FRAMES-eng": "370095", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "urd" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7895.369000", + "duration_ts": 7895369, + "height": 720, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2854", + "BPS-eng": "2854", + "DURATION": "02:01:17.306000000", + "DURATION-eng": "02:01:17.306000000", + "NUMBER_OF_BYTES": "2596446", + "NUMBER_OF_BYTES-eng": "2596446", + "NUMBER_OF_FRAMES": "1286", + "NUMBER_OF_FRAMES-eng": "1286", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7895.369000", + "duration_ts": 7895369, + "height": 720, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "347", + "BPS-eng": "347", + "DURATION": "00:17:56.235000000", + "DURATION-eng": "00:17:56.235000000", + "NUMBER_OF_BYTES": "46780", + "NUMBER_OF_BYTES-eng": "46780", + "NUMBER_OF_FRAMES": "24", + "NUMBER_OF_FRAMES-eng": "24", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7895.369000", + "duration_ts": 7895369, + "height": 720, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2295", + "BPS-eng": "2295", + "DURATION": "02:10:30.110000000", + "DURATION-eng": "02:10:30.110000000", + "NUMBER_OF_BYTES": "2246599", + "NUMBER_OF_BYTES-eng": "2246599", + "NUMBER_OF_FRAMES": "1223", + "NUMBER_OF_FRAMES-eng": "1223", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "fre" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7895.369000", + "duration_ts": 7895369, + "height": 720, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38", + "BPS-eng": "38", + "DURATION": "02:09:11.115000000", + "DURATION-eng": "02:09:11.115000000", + "NUMBER_OF_BYTES": "37105", + "NUMBER_OF_BYTES-eng": "37105", + "NUMBER_OF_FRAMES": "23", + "NUMBER_OF_FRAMES-eng": "23", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.2.0 ('Photograph') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-08-16 23:54:09", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-08-16 23:54:09", + "language": "hin" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "Chicken Run/Chicken Run.avi": { + "format": { + "bit_rate": "1491783", + "duration": "5062.062062", + "filename": "Chicken Run/Chicken Run.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "943937536", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1364407", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 672, + "display_aspect_ratio": "7:4", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5062.062062", + "duration_ts": 121368, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "121368", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "114672", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5062.056000", + "duration_ts": 210919, + "index": 1, + "nb_frames": "210919", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Oceans 13/Oceans 13 - Part 1.avi": { + "format": { + "bit_rate": "1549232", + "duration": "3780.920000", + "filename": "Oceans 13/Oceans 13 - Part 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "732190720", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1406438", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3780.920000", + "duration_ts": 94523, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "94523", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3780.912000", + "duration_ts": 157538, + "index": 1, + "nb_frames": "157538", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Pulp Fiction (1994)/Pulp.Fiction.1994.1080p.BluRay.x264.DTS-ETRG.mkv": { + "format": { + "bit_rate": "4571236", + "duration": "9267.094000", + "filename": "Pulp Fiction (1994)/Pulp.Fiction.1994.1080p.BluRay.x264.DTS-ETRG.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5295260350", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-04-14T06:53:25.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3059996", + "BPS-eng": "3059996", + "DURATION": "02:34:27.091000000", + "DURATION-eng": "02:34:27.091000000", + "NUMBER_OF_BYTES": "3544657722", + "NUMBER_OF_BYTES-eng": "3544657722", + "NUMBER_OF_FRAMES": "222188", + "NUMBER_OF_FRAMES-eng": "222188", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-14 06:53:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-14 06:53:25" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "02:34:27.094000000", + "DURATION-eng": "02:34:27.094000000", + "NUMBER_OF_BYTES": "1748005480", + "NUMBER_OF_BYTES-eng": "1748005480", + "NUMBER_OF_FRAMES": "868790", + "NUMBER_OF_FRAMES-eng": "868790", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-04-14 06:53:25", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-04-14 06:53:25", + "language": "eng", + "title": "Surround Sound" + }, + "time_base": "1/1000" + } + ] + }, + "Indiana Jones And The Kingdom Of The Crystal Skull (2008)/26eb1ef039a94da39c09e20c5f523745.mkv": { + "format": { + "bit_rate": "11496718", + "duration": "7351.344000", + "filename": "Indiana Jones And The Kingdom Of The Crystal Skull (2008)/26eb1ef039a94da39c09e20c5f523745.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "10564541781", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7351.344000", + "duration_ts": 7351344, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Hudsucker Proxy (1994)/54151c3b9a2a4773958f848efecefc3b.mkv": { + "format": { + "bit_rate": "5753206", + "duration": "6645.024000", + "filename": "The Hudsucker Proxy (1994)/54151c3b9a2a4773958f848efecefc3b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4778774000", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-06-26T18:32:38.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 0, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Constrained Baseline", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4114378", + "DURATION-eng": "01:50:44.471000000", + "NUMBER_OF_BYTES-eng": "3417233639", + "NUMBER_OF_FRAMES-eng": "159308", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-26 18:32:38", + "language": "eng", + "title": "The Hudsucker Proxy 1994 1080p BRRip x264 DTS-HD 2.0-decatora27" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1585605", + "DURATION-eng": "01:50:45.024000000", + "NUMBER_OF_BYTES-eng": "1317048564", + "NUMBER_OF_FRAMES-eng": "622971", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-26 18:32:38", + "language": "eng", + "title": "English DTS-HD 2.0" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6645.024000", + "duration_ts": 6645024, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45185", + "DURATION-eng": "01:50:04.890000000", + "NUMBER_OF_BYTES-eng": "37305879", + "NUMBER_OF_FRAMES-eng": "3042", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-26 18:32:38", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6645.024000", + "duration_ts": 6645024, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "55628", + "DURATION-eng": "01:49:59.141000000", + "NUMBER_OF_BYTES-eng": "45887839", + "NUMBER_OF_FRAMES-eng": "2466", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v35.0.0 ('All The Love In The World') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-06-26 18:32:38", + "language": "spa", + "title": "Spanish" + }, + "time_base": "1/1000" + } + ] + }, + "Lady Bird (2017)/0de7a153759c4df98f28b36b03e152d3.mkv": { + "format": { + "bit_rate": "9824531", + "duration": "5644.681000", + "filename": "Lady Bird (2017)/0de7a153759c4df98f28b36b03e152d3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "6932043287", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-03T17:57:59.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 690, + "coded_width": 1280, + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 690, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "8971350", + "DURATION-eng": "01:34:04.681000000", + "NUMBER_OF_BYTES-eng": "6330051116", + "NUMBER_OF_FRAMES-eng": "135337", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-03 17:57:59", + "language": "eng", + "title": "x264 @ 8971 kbps" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:33:39.776000000", + "NUMBER_OF_BYTES-eng": "449582080", + "NUMBER_OF_FRAMES-eng": "175618", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-03 17:57:59", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "01:34:02.656000000", + "NUMBER_OF_BYTES-eng": "135423744", + "NUMBER_OF_FRAMES-eng": "176333", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-03 17:57:59", + "language": "eng", + "title": "Commentary by writer and director Greta Gerwig and cinematographer Sam Levy" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5644.681000", + "duration_ts": 5644681, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "75", + "DURATION-eng": "01:27:49.597000000", + "NUMBER_OF_BYTES-eng": "49916", + "NUMBER_OF_FRAMES-eng": "1425", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-03 17:57:59", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5644.681000", + "duration_ts": 5644681, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "81", + "DURATION-eng": "01:33:24.599000000", + "NUMBER_OF_BYTES-eng": "56810", + "NUMBER_OF_FRAMES-eng": "1612", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-03 17:57:59", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5644.681000", + "duration_ts": 5644681, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "46223", + "DURATION-eng": "01:28:08.033000000", + "NUMBER_OF_BYTES-eng": "30553876", + "NUMBER_OF_FRAMES-eng": "2654", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-03 17:57:59", + "language": "spa" + }, + "time_base": "1/1000" + } + ] + }, + "Avengers Endgame (2019)/63fe9d1c8ec24fcd9b17488874a67e38.mkv": { + "format": { + "bit_rate": "8228820", + "duration": "10894.753000", + "filename": "Avengers Endgame (2019)/63fe9d1c8ec24fcd9b17488874a67e38.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "11206370292", + "start_time": "0.067000", + "tags": { + "creation_time": "2019-07-28T16:11:32.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 260, + "start_time": "0.260000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "30000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/60000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 67, + "start_time": "0.067000", + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Catch-22 (1970)/Catch-22 [1970] -- Part 1.avi": { + "format": { + "bit_rate": "1686351", + "duration": "3237.904571", + "filename": "Catch-22 (1970)/Catch-22 [1970] -- Part 1.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "682530816", + "start_time": "0.000000", + "tags": { + "ISBJ": "Catch 22", + "artist": "R. Daneel (SChiZO)", + "comment": "", + "copyright": "You're a very weird man, Yossarian.", + "encoder": "Nandub v0.26.1", + "title": "Catch 22" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1494684", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3237.904571", + "duration_ts": 77632, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": -99, + "nb_frames": "77632", + "pix_fmt": "yuv420p", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "176632", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3237.864000", + "duration_ts": 134911, + "index": 1, + "nb_frames": "134911", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Pushing Tin/Pushing Tin.avi": { + "format": { + "bit_rate": "1016609", + "duration": "7428.845512", + "filename": "Pushing Tin/Pushing Tin.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "944029696", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "893847", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7428.845512", + "duration_ts": 178114, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "178114", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "110056", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7428.840000", + "duration_ts": 309535, + "index": 1, + "nb_frames": "309535", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Trolls Holiday (2017)/trolls.holiday.2017.720p.web-dl.h264.ac3-evo.mkv": { + "format": { + "bit_rate": "4369517", + "duration": "4320.032000", + "filename": "Trolls Holiday (2017)/trolls.holiday.2017.720p.web-dl.h264.ac3-evo.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2359557011", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-11-06T21:06:24.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 716, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:179", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 716, + "index": 1, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "American Psycho (2000)/AMERICAN PSYCHO - Uncut [2000-Eng-DVDrip]-haSak.avi": { + "format": { + "bit_rate": "964614", + "duration": "6122.032583", + "filename": "American Psycho (2000)/AMERICAN PSYCHO - Uncut [2000-Eng-DVDrip]-haSak.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "738174864", + "start_time": "0.000000", + "tags": { + "album": "AMERICAN PSYCHO", + "artist": "haSak", + "encoder": "Lavf51.19.0", + "title": "AMERICAN PSYCHO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "823910", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 314, + "coded_width": 736, + "display_aspect_ratio": "368:157", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6122.032583", + "duration_ts": 146782, + "has_b_frames": 0, + "height": 314, + "index": 0, + "level": 3, + "nb_frames": "146782", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 736 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "97950336", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/16000" + } + ] + }, + "Into The Woods (2014)/Into.the.Woods.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2126894", + "duration": "7485.673333", + "filename": "Into The Woods (2014)/Into.the.Woods.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1990154477", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-03-13T05:01:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2028986", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7485.561417", + "duration_ts": 179653474, + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "179474", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-03-13T05:01:29.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93801", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7485.674667", + "duration_ts": 359312384, + "index": 1, + "max_bit_rate": "104280", + "nb_frames": "350891", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-03-13T05:01:39.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Hunger Games Mockingjay Part 1 (2014)/The.Hunger.Games.Mockingjay.Part.1..2014.720p.BluRay.x264-SPARKS.mkv": { + "format": { + "bit_rate": "6368337", + "duration": "7370.432000", + "filename": "The Hunger Games Mockingjay Part 1 (2014)/The.Hunger.Games.Mockingjay.Part.1..2014.720p.BluRay.x264-SPARKS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5867174545", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-02-20T23:16:57.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "How To Plan An Orgy In A Small Town (2015)/How.to.Plan.an.Orgy.in.a.Small.Town.2015.720p.WEBRip.AAC.2.0.x264-SRG.mp4": { + "format": { + "bit_rate": "1467175", + "duration": "6075.074000", + "filename": "How To Plan An Orgy In A Small Town (2015)/How.to.Plan.an.Orgy.in.a.Small.Town.2015.720p.WEBRip.AAC.2.0.x264-SRG.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "1114149744", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomiso2avc1mp41", + "creation_time": "2016-05-13T14:48:27.000000Z", + "encoder": "HandBrake 0.10.5 2016021100", + "major_brand": "mp42", + "minor_version": "512", + "title": "How.to.Plan.an.Orgy.in.a.Small.Town.2015.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "72828000/3037537", + "bit_rate": "1300015", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "3037537/145656000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:269", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6075.074000", + "duration_ts": 546756660, + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "145656", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "4311:4304", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-13T14:48:27.000000Z", + "handler_name": "VideoHandler", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160030", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6075.008000", + "duration_ts": 291600384, + "index": 1, + "max_bit_rate": "200000", + "nb_frames": "284766", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-13T14:48:27.000000Z", + "handler_name": "Stereo", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "87", + "codec_long_name": "MOV text", + "codec_name": "mov_text", + "codec_tag": "0x67337874", + "codec_tag_string": "tx3g", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6075.074000", + "duration_ts": 546756660, + "height": 60, + "index": 2, + "nb_frames": "3506", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-13T14:48:27.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/90000", + "width": 1282 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6075.074000", + "duration_ts": 6075074, + "index": 3, + "nb_frames": "13", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2016-05-13T14:48:27.000000Z", + "handler_name": "SubtitleHandler", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "This Film Is Not Yet Rated/This.Film.Is.Not.Yet.Rated.LIMITED.DVDRip.XviD-DMT.avi": { + "format": { + "bit_rate": "988558", + "duration": "5870.280000", + "filename": "This Film Is Not Yet Rated/This.Film.Is.Not.Yet.Rated.LIMITED.DVDRip.XviD-DMT.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "725389312", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "865862", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 544, + "display_aspect_ratio": "34:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5870.270270", + "duration_ts": 175932, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "175932", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 544 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "108816", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5870.280000", + "duration_ts": 244595, + "index": 1, + "nb_frames": "244595", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Tango and Cash/Tango and Cash (DVD Rip).avi": { + "format": { + "bit_rate": "942746", + "duration": "5977.977978", + "filename": "Tango and Cash/Tango and Cash (DVD Rip).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "704464384", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "741316", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "display_aspect_ratio": "3:2", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5977.977978", + "duration_ts": 143328, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 5, + "nb_frames": "143328", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "143471142", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Audio Stream" + }, + "time_base": "1/24000" + } + ] + }, + "Blow (2001)/Blow[2001]DVDrip[ENG]-MissRipZ.avi": { + "format": { + "bit_rate": "831974", + "duration": "7100.160000", + "filename": "Blow (2001)/Blow[2001]DVDrip[ENG]-MissRipZ.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "738394112", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "728681", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7100.160000", + "duration_ts": 177504, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "177504", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "96000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/32000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "197197", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "32000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "9/250" + } + ] + }, + "Anchorman 2 The Legend Continues (2013)/flame-anchorman.2.the.legend.continues.2013.theatrical.720p.bluray.x264.mkv": { + "format": { + "bit_rate": "6928974", + "duration": "6779.616000", + "filename": "Anchorman 2 The Legend Continues (2013)/flame-anchorman.2.the.legend.continues.2013.theatrical.720p.bluray.x264.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "5871973182", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-12-28T11:03:11.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5417301", + "BPS-eng": "5417301", + "DURATION": "01:52:59.606000000", + "DURATION-eng": "01:52:59.606000000", + "NUMBER_OF_BYTES": "4590896062", + "NUMBER_OF_BYTES-eng": "4590896062", + "NUMBER_OF_FRAMES": "162548", + "NUMBER_OF_FRAMES-eng": "162548", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-28 11:03:11", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-28 11:03:11", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:52:59.616000000", + "DURATION-eng": "01:52:59.616000000", + "NUMBER_OF_BYTES": "1278805156", + "NUMBER_OF_BYTES-eng": "1278805156", + "NUMBER_OF_FRAMES": "635589", + "NUMBER_OF_FRAMES-eng": "635589", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-28 11:03:11", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-28 11:03:11", + "language": "eng", + "title": "English DTS 1509 kbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6779.616000", + "duration_ts": 6779616, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "82", + "BPS-eng": "82", + "DURATION": "01:51:44.238000000", + "DURATION-eng": "01:51:44.238000000", + "NUMBER_OF_BYTES": "69526", + "NUMBER_OF_BYTES-eng": "69526", + "NUMBER_OF_FRAMES": "2037", + "NUMBER_OF_FRAMES-eng": "2037", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-28 11:03:11", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-28 11:03:11", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6779.616000", + "duration_ts": 6779616, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "78", + "BPS-eng": "78", + "DURATION": "01:52:03.299000000", + "DURATION-eng": "01:52:03.299000000", + "NUMBER_OF_BYTES": "65785", + "NUMBER_OF_BYTES-eng": "65785", + "NUMBER_OF_FRAMES": "2040", + "NUMBER_OF_FRAMES-eng": "2040", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.6.0 ('Slave To Your Mind') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-12-28 11:03:11", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-12-28 11:03:11", + "language": "pol" + }, + "time_base": "1/1000" + } + ] + }, + "Blade (1998)/e458676eb880465e9409849ad9217518.mkv": { + "format": { + "bit_rate": "17246357", + "duration": "7216.619000", + "filename": "Blade (1998)/e458676eb880465e9409849ad9217518.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 15, + "probe_score": 100, + "size": "15557549327", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-12-31T15:40:32Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "12590210", + "DURATION-eng": "02:00:16.585000000", + "NUMBER_OF_BYTES-eng": "11357290444", + "NUMBER_OF_FRAMES-eng": "173025", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "6.1", + "channels": 7, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4577662", + "DURATION-eng": "02:00:16.619000000", + "NUMBER_OF_BYTES-eng": "4129405716", + "NUMBER_OF_FRAMES-eng": "676558", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19813", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "17710273", + "NUMBER_OF_FRAMES-eng": "1948", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "22706", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "20295788", + "NUMBER_OF_FRAMES-eng": "1995", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "20257", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "18106993", + "NUMBER_OF_FRAMES-eng": "2004", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "18321", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "16376121", + "NUMBER_OF_FRAMES-eng": "1842", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "17541", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "15678983", + "NUMBER_OF_FRAMES-eng": "1830", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "16976", + "DURATION-eng": "01:59:10.602000000", + "NUMBER_OF_BYTES-eng": "15174339", + "NUMBER_OF_FRAMES-eng": "1995", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "19139", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "17107606", + "NUMBER_OF_FRAMES-eng": "1844", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "14095", + "DURATION-eng": "01:59:10.644000000", + "NUMBER_OF_BYTES-eng": "12599157", + "NUMBER_OF_FRAMES-eng": "1716", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "15711", + "DURATION-eng": "01:59:33.083000000", + "NUMBER_OF_BYTES-eng": "14087468", + "NUMBER_OF_FRAMES-eng": "1848", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "542", + "DURATION-eng": "01:58:54.545000000", + "NUMBER_OF_BYTES-eng": "483622", + "NUMBER_OF_FRAMES-eng": "64", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "563", + "DURATION-eng": "01:58:54.545000000", + "NUMBER_OF_BYTES-eng": "502836", + "NUMBER_OF_FRAMES-eng": "64", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "575", + "DURATION-eng": "01:58:54.545000000", + "NUMBER_OF_BYTES-eng": "513457", + "NUMBER_OF_FRAMES-eng": "64", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7216.619000", + "duration_ts": 7216619, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "347", + "DURATION-eng": "01:58:04.661000000", + "NUMBER_OF_BYTES-eng": "307578", + "NUMBER_OF_FRAMES-eng": "52", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v23.0.0 ('The Bride Said No') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-12-31 20:54:24", + "language": "cze" + }, + "time_base": "1/1000" + } + ] + }, + "Rampage (2018)/rampage.2018.1080p.web.h264-webtiful.mkv": { + "format": { + "bit_rate": "4910792", + "duration": "6434.112000", + "filename": "Rampage (2018)/rampage.2018.1080p.web.h264-webtiful.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "3949573273", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-06-18T05:47:12.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6434.112000", + "duration_ts": 6434112, + "index": 0, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56", + "DURATION-eng": "01:37:55.269000000", + "NUMBER_OF_BYTES-eng": "41583", + "NUMBER_OF_FRAMES-eng": "1352", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-18 05:47:12", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6434.112000", + "duration_ts": 6434112, + "index": 1, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "40", + "DURATION-eng": "01:46:41.526000000", + "NUMBER_OF_BYTES-eng": "32587", + "NUMBER_OF_FRAMES-eng": "1186", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-18 05:47:12", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6434.112000", + "duration_ts": 6434112, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "83", + "DURATION-eng": "01:46:43.570000000", + "NUMBER_OF_BYTES-eng": "66543", + "NUMBER_OF_FRAMES-eng": "1292", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-18 05:47:12", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6434.112000", + "duration_ts": 6434112, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "47", + "DURATION-eng": "01:46:41.693000000", + "NUMBER_OF_BYTES-eng": "37850", + "NUMBER_OF_FRAMES-eng": "1275", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-18 05:47:12", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 4, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS-eng": "4524504", + "DURATION-eng": "01:47:14.053000000", + "NUMBER_OF_BYTES-eng": "3638862970", + "NUMBER_OF_FRAMES-eng": "154263", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-18 05:47:12", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 5, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "01:47:14.112000000", + "NUMBER_OF_BYTES-eng": "308837376", + "NUMBER_OF_FRAMES-eng": "201066", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v24.0.0 ('Beyond The Pale') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-06-18 05:47:12", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Nutcracker And The Four Realms (2018)/The Nutcracker And The Four Realms 2018 1080p BRRip x264 MkvCage ws.mkv": { + "format": { + "bit_rate": "2793763", + "duration": "5956.127000", + "filename": "The Nutcracker And The Four Realms (2018)/The Nutcracker And The Four Realms 2018 1080p BRRip x264 MkvCage ws.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2080001313", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-18T06:16:28.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "The.Nutcracker.And.The.Four.Realms.2018.1080p.BRRip.x264.MkvCage.ws" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS-eng": "191789", + "DURATION-eng": "01:39:16.096000000", + "NUMBER_OF_BYTES-eng": "142789258", + "NUMBER_OF_FRAMES-eng": "139596", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-18 06:16:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5956.127000", + "duration_ts": 5956127, + "index": 1, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45", + "DURATION-eng": "01:36:45.299000000", + "NUMBER_OF_BYTES-eng": "33285", + "NUMBER_OF_FRAMES-eng": "1341", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-18 06:16:28", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5956.127000", + "duration_ts": 5956127, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "41", + "DURATION-eng": "01:27:42.299000000", + "NUMBER_OF_BYTES-eng": "27118", + "NUMBER_OF_FRAMES-eng": "1099", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-18 06:16:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 3, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "2599889", + "DURATION-eng": "01:39:16.117000000", + "NUMBER_OF_BYTES-eng": "1935655971", + "NUMBER_OF_FRAMES-eng": "142804", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-18 06:16:28" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "House of Yes/House of Yes (XviD).avi": { + "format": { + "bit_rate": "1147307", + "duration": "5119.035702", + "filename": "House of Yes/House of Yes (XviD).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734138368", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1005769", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 368, + "coded_width": 672, + "display_aspect_ratio": "42:23", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5119.035702", + "duration_ts": 122734, + "has_b_frames": 1, + "height": 368, + "index": 0, + "level": 5, + "nb_frames": "122734", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128832", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5119.032000", + "duration_ts": 213293, + "index": 1, + "nb_frames": "213293", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Princess Mononoke (1997)/Princess.Mononoke.1080p.DualAudio.5.1.English.Japanese.BDrip.[KoTuWa].mkv": { + "format": { + "bit_rate": "2175725", + "duration": "8005.400000", + "filename": "Princess Mononoke (1997)/Princess.Mononoke.1080p.DualAudio.5.1.English.Japanese.BDrip.[KoTuWa].mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 49, + "probe_score": 100, + "size": "2177194581", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-08-24T06:07:41.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1", + "title": "Princess Mononoke (1997) 1080p (DualAudio) 6ch (English, Japanese) BDrip [KoTuWa]" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "26:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1707652", + "BPS-eng": "1707652", + "DURATION": "02:13:22.870000000", + "DURATION-eng": "02:13:22.870000000", + "NUMBER_OF_BYTES": "1708265607", + "NUMBER_OF_BYTES-eng": "1708265607", + "NUMBER_OF_FRAMES": "191877", + "NUMBER_OF_FRAMES-eng": "191877", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "title": "x264 8bit [KoTuWa]" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "226727", + "BPS-eng": "226727", + "DURATION": "02:13:22.901000000", + "DURATION-eng": "02:13:22.901000000", + "NUMBER_OF_BYTES": "226809337", + "NUMBER_OF_BYTES-eng": "226809337", + "NUMBER_OF_FRAMES": "187568", + "NUMBER_OF_FRAMES-eng": "187568", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "jpn", + "title": "Japanese (日本の)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 9, + "start_time": "0.009000", + "tags": { + "BPS": "222475", + "BPS-eng": "222475", + "DURATION": "02:13:22.901000000", + "DURATION-eng": "02:13:22.901000000", + "NUMBER_OF_BYTES": "222556166", + "NUMBER_OF_BYTES-eng": "222556166", + "NUMBER_OF_FRAMES": "375136", + "NUMBER_OF_FRAMES-eng": "375136", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "1595", + "NUMBER_OF_BYTES-eng": "1595", + "NUMBER_OF_FRAMES": "14", + "NUMBER_OF_FRAMES-eng": "14", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "sin", + "title": "- 00 Select your Language from this List =)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "67", + "BPS-eng": "67", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "67831", + "NUMBER_OF_BYTES-eng": "67831", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "afr", + "title": "Afrikaans" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "86", + "BPS-eng": "86", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "86312", + "NUMBER_OF_BYTES-eng": "86312", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "ara", + "title": "Arabic (العربية) Unicode" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "50693", + "NUMBER_OF_BYTES-eng": "50693", + "NUMBER_OF_FRAMES": "1100", + "NUMBER_OF_FRAMES-eng": "1100", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "ara", + "title": "Arabic (العربية) nonunicode" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 8005400, + "height": 1080, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4241", + "BPS-eng": "4241", + "DURATION": "02:13:04.467000000", + "DURATION-eng": "02:13:04.467000000", + "NUMBER_OF_BYTES": "4233281", + "NUMBER_OF_BYTES-eng": "4233281", + "NUMBER_OF_FRAMES": "1166", + "NUMBER_OF_FRAMES-eng": "1166", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "chi", + "title": "Chinese (中国) IDX" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "34549", + "NUMBER_OF_BYTES-eng": "34549", + "NUMBER_OF_FRAMES": "1127", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "chi", + "title": "Chinese (中国) TextSub BG" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "34833", + "NUMBER_OF_BYTES-eng": "34833", + "NUMBER_OF_FRAMES": "1062", + "NUMBER_OF_FRAMES-eng": "1062", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "cze", + "title": "Czech (české )" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "52", + "BPS-eng": "52", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "53015", + "NUMBER_OF_BYTES-eng": "53015", + "NUMBER_OF_FRAMES": "1238", + "NUMBER_OF_FRAMES-eng": "1238", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "dan", + "title": "Danish (Danske)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "36", + "BPS-eng": "36", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "36223", + "NUMBER_OF_BYTES-eng": "36223", + "NUMBER_OF_FRAMES": "1107", + "NUMBER_OF_FRAMES-eng": "1107", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "dut", + "title": "Dutch (Nederlandse)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "65", + "BPS-eng": "65", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "65691", + "NUMBER_OF_BYTES-eng": "65691", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "eng", + "title": "English 4 Orig. Japanese Audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "93", + "BPS-eng": "93", + "DURATION": "02:13:25.400000000", + "DURATION-eng": "02:13:25.400000000", + "NUMBER_OF_BYTES": "93537", + "NUMBER_OF_BYTES-eng": "93537", + "NUMBER_OF_FRAMES": "1498", + "NUMBER_OF_FRAMES-eng": "1498", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "eng", + "title": "English for Eng Audio (exact) HI" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "34692", + "NUMBER_OF_BYTES-eng": "34692", + "NUMBER_OF_FRAMES": "1127", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "epo", + "title": "Esperanto" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "65", + "BPS-eng": "65", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "65570", + "NUMBER_OF_BYTES-eng": "65570", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "est", + "title": "Estonian (Eesti)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "36", + "BPS-eng": "36", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "37016", + "NUMBER_OF_BYTES-eng": "37016", + "NUMBER_OF_FRAMES": "1130", + "NUMBER_OF_FRAMES-eng": "1130", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "fin", + "title": "Finnish (Suomalainen) 1 mt" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "02:13:25.105000000", + "DURATION-eng": "02:13:25.105000000", + "NUMBER_OF_BYTES": "47420", + "NUMBER_OF_BYTES-eng": "47420", + "NUMBER_OF_FRAMES": "1167", + "NUMBER_OF_FRAMES-eng": "1167", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "fin", + "title": "Finnish (Suomalainen) 2" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "02:13:20.110000000", + "DURATION-eng": "02:13:20.110000000", + "NUMBER_OF_BYTES": "83711", + "NUMBER_OF_BYTES-eng": "83711", + "NUMBER_OF_FRAMES": "1160", + "NUMBER_OF_FRAMES-eng": "1160", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "fre", + "title": "French (Français)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "69", + "BPS-eng": "69", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "69907", + "NUMBER_OF_BYTES-eng": "69907", + "NUMBER_OF_FRAMES": "966", + "NUMBER_OF_FRAMES-eng": "966", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "ger", + "title": "German (Deutsch)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "77", + "BPS-eng": "77", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "77329", + "NUMBER_OF_BYTES-eng": "77329", + "NUMBER_OF_FRAMES": "1063", + "NUMBER_OF_FRAMES-eng": "1063", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "gre", + "title": "Greek (ελληνικά)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "46", + "BPS-eng": "46", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "46656", + "NUMBER_OF_BYTES-eng": "46656", + "NUMBER_OF_FRAMES": "1127", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "heb", + "title": "Hebrew (עברית)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "83390", + "NUMBER_OF_BYTES-eng": "83390", + "NUMBER_OF_FRAMES": "1127", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "hin", + "title": "Hindi (हिंदी)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "30730", + "NUMBER_OF_BYTES-eng": "30730", + "NUMBER_OF_FRAMES": "1122", + "NUMBER_OF_FRAMES-eng": "1122", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "hun", + "title": "Hungarian (Magyar)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "38", + "BPS-eng": "38", + "DURATION": "02:13:25.105000000", + "DURATION-eng": "02:13:25.105000000", + "NUMBER_OF_BYTES": "38417", + "NUMBER_OF_BYTES-eng": "38417", + "NUMBER_OF_FRAMES": "1082", + "NUMBER_OF_FRAMES-eng": "1082", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "ind", + "title": "Indonesian (Bahasa Indonesia)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "02:13:19.756000000", + "DURATION-eng": "02:13:19.756000000", + "NUMBER_OF_BYTES": "47943", + "NUMBER_OF_BYTES-eng": "47943", + "NUMBER_OF_FRAMES": "1089", + "NUMBER_OF_FRAMES-eng": "1089", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "ita", + "title": "Italian (Italiano)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 8005400, + "height": 1080, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4693", + "BPS-eng": "4693", + "DURATION": "02:08:25.030000000", + "DURATION-eng": "02:08:25.030000000", + "NUMBER_OF_BYTES": "4520312", + "NUMBER_OF_BYTES-eng": "4520312", + "NUMBER_OF_FRAMES": "1621", + "NUMBER_OF_FRAMES-eng": "1621", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "jpn", + "title": "Japanese (日本の)" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 8005400, + "height": 1080, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2721", + "BPS-eng": "2721", + "DURATION": "02:13:18.856000000", + "DURATION-eng": "02:13:18.856000000", + "NUMBER_OF_BYTES": "2721137", + "NUMBER_OF_BYTES-eng": "2721137", + "NUMBER_OF_FRAMES": "1227", + "NUMBER_OF_FRAMES-eng": "1227", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "kor", + "title": "Korean (한국어)" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "71", + "BPS-eng": "71", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "71264", + "NUMBER_OF_BYTES-eng": "71264", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "lat", + "title": "Latin (Latine)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "74", + "BPS-eng": "74", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "74364", + "NUMBER_OF_BYTES-eng": "74364", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "may", + "title": "Malay (Melayu)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "35", + "BPS-eng": "35", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "35150", + "NUMBER_OF_BYTES-eng": "35150", + "NUMBER_OF_FRAMES": "1121", + "NUMBER_OF_FRAMES-eng": "1121", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "nor", + "title": "Norwegian (Norsk)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "02:13:25.195000000", + "DURATION-eng": "02:13:25.195000000", + "NUMBER_OF_BYTES": "47284", + "NUMBER_OF_BYTES-eng": "47284", + "NUMBER_OF_FRAMES": "1182", + "NUMBER_OF_FRAMES-eng": "1182", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "per", + "title": "Persian (فارسی)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "68", + "BPS-eng": "68", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "68348", + "NUMBER_OF_BYTES-eng": "68348", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "pol", + "title": "Polish (Polski) MT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 33, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "02:13:25.323000000", + "DURATION-eng": "02:13:25.323000000", + "NUMBER_OF_BYTES": "30735", + "NUMBER_OF_BYTES-eng": "30735", + "NUMBER_OF_FRAMES": "970", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "pol", + "title": "Polish (Polski) TC" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 34, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "45", + "BPS-eng": "45", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "45219", + "NUMBER_OF_BYTES-eng": "45219", + "NUMBER_OF_FRAMES": "1169", + "NUMBER_OF_FRAMES-eng": "1169", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "por", + "title": "Portuguese (Português)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 35, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "49", + "BPS-eng": "49", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "49784", + "NUMBER_OF_BYTES-eng": "49784", + "NUMBER_OF_FRAMES": "1182", + "NUMBER_OF_FRAMES-eng": "1182", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "rum", + "title": "Romanian (Român)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 36, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "02:13:25.105000000", + "DURATION-eng": "02:13:25.105000000", + "NUMBER_OF_BYTES": "63362", + "NUMBER_OF_BYTES-eng": "63362", + "NUMBER_OF_FRAMES": "1099", + "NUMBER_OF_FRAMES-eng": "1099", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "rus", + "title": "Russian (Русский)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 37, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "89", + "BPS-eng": "89", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "89752", + "NUMBER_OF_BYTES-eng": "89752", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "srp", + "title": "Serbian (Српска)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 38, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "35", + "BPS-eng": "35", + "DURATION": "02:13:24.699000000", + "DURATION-eng": "02:13:24.699000000", + "NUMBER_OF_BYTES": "35334", + "NUMBER_OF_BYTES-eng": "35334", + "NUMBER_OF_FRAMES": "1072", + "NUMBER_OF_FRAMES-eng": "1072", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "spa", + "title": "Spanish (Español)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 39, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "35", + "BPS-eng": "35", + "DURATION": "02:13:25.105000000", + "DURATION-eng": "02:13:25.105000000", + "NUMBER_OF_BYTES": "35943", + "NUMBER_OF_BYTES-eng": "35943", + "NUMBER_OF_FRAMES": "1127", + "NUMBER_OF_FRAMES-eng": "1127", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "swe", + "title": "Swedish (Svenska)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 40, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "120", + "BPS-eng": "120", + "DURATION": "02:13:25.210000000", + "DURATION-eng": "02:13:25.210000000", + "NUMBER_OF_BYTES": "120956", + "NUMBER_OF_BYTES-eng": "120956", + "NUMBER_OF_FRAMES": "1087", + "NUMBER_OF_FRAMES-eng": "1087", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "tha", + "title": "Thai (ไทย)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 41, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "54", + "BPS-eng": "54", + "DURATION": "02:13:25.105000000", + "DURATION-eng": "02:13:25.105000000", + "NUMBER_OF_BYTES": "54066", + "NUMBER_OF_BYTES-eng": "54066", + "NUMBER_OF_FRAMES": "1169", + "NUMBER_OF_FRAMES-eng": "1169", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "tur", + "title": "Turkish (Türkçe)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 42, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "90", + "BPS-eng": "90", + "DURATION": "02:13:25.100000000", + "DURATION-eng": "02:13:25.100000000", + "NUMBER_OF_BYTES": "90861", + "NUMBER_OF_BYTES-eng": "90861", + "NUMBER_OF_FRAMES": "1239", + "NUMBER_OF_FRAMES-eng": "1239", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "ukr", + "title": "Ukrainian (Український)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 43, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "44", + "BPS-eng": "44", + "DURATION": "02:13:25.213000000", + "DURATION-eng": "02:13:25.213000000", + "NUMBER_OF_BYTES": "44633", + "NUMBER_OF_BYTES-eng": "44633", + "NUMBER_OF_FRAMES": "1067", + "NUMBER_OF_FRAMES-eng": "1067", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.1.0 ('Good Love') 64bit built on Jul 27 2014 13:06:55", + "_STATISTICS_WRITING_DATE_UTC": "2014-08-24 06:07:41", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-08-24 06:07:41", + "language": "vie", + "title": "Vietnamese (Việt)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 450, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 720486000, + "has_b_frames": 0, + "height": 600, + "index": 44, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "PM_thumb_Med.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 450 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 720486000, + "index": 45, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "NotoSans-Regular.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 720486000, + "index": 46, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "NotoSans-Bold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 720486000, + "index": 47, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "NotoSans-Italic.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8005.400000", + "duration_ts": 720486000, + "index": 48, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "NotoSans-BoldItalic.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "I, Robot/s-irobot.mkv": { + "format": { + "bit_rate": "5456155", + "duration": "6883.263000", + "filename": "I, Robot/s-irobot.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4694518812", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-20T13:19:42.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "I Heart Huckabees/I Heart Huckabees 2004 XviD DVDRip.avi": { + "format": { + "bit_rate": "920093", + "duration": "6398.266875", + "filename": "I Heart Huckabees/I Heart Huckabees 2004 XviD DVDRip.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735875072", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "774425", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 288, + "coded_width": 688, + "display_aspect_ratio": "43:18", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6398.266875", + "duration_ts": 153405, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "153405", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 688 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132960", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6398.256000", + "duration_ts": 266594, + "index": 1, + "nb_frames": "266594", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Fahrenheit 451 (2018)/a8dd621fa2e345758de9853470099247.mkv": { + "format": { + "bit_rate": "3764190", + "duration": "6058.592000", + "filename": "Fahrenheit 451 (2018)/a8dd621fa2e345758de9853470099247.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2850712170", + "start_time": "0.078000", + "tags": { + "creation_time": "2018-05-20T02:04:21.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "The Shawshank Redemption (1994)/The.Shawshank.Redemption.1994.720p.BluRay.x264-SiNNERS.mkv": { + "format": { + "bit_rate": "6589413", + "duration": "8552.448000", + "filename": "The Shawshank Redemption (1994)/The.Shawshank.Redemption.1994.720p.BluRay.x264-SiNNERS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "7044452336", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-09-27T00:32:33.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8552.448000", + "duration_ts": 8552448, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Guardians Of The Galaxy (2014)/Guardians.of.the.Galaxy.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2194180", + "duration": "7251.285000", + "filename": "Guardians Of The Galaxy (2014)/Guardians.of.the.Galaxy.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1988828715", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-11-15T22:57:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2096458", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7251.160583", + "duration_ts": 174027854, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "173854", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-11-15T22:57:29.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93672", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7251.285333", + "duration_ts": 348061696, + "index": 1, + "max_bit_rate": "104048", + "nb_frames": "339904", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-11-15T22:57:38.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Waiting/Waiting.avi": { + "format": { + "bit_rate": "1037340", + "duration": "5636.803470", + "filename": "Waiting/Waiting.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "730910720", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "917185", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 624, + "display_aspect_ratio": "39:22", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5636.803470", + "duration_ts": 135148, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "135148", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "107408", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5636.736000", + "duration_ts": 234864, + "index": 1, + "nb_frames": "234864", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Whole Nine Yards/The Whole Nine Yards.mp4": { + "format": { + "bit_rate": "1236412", + "duration": "5934.144000", + "filename": "The Whole Nine Yards/The Whole Nine Yards.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "917131384", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T21:52:41.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "533531250/22252793", + "bit_rate": "1097417", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "22252793/1067062500", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5934.078133", + "duration_ts": 534067032, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "142275", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T21:52:41.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "133834", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5934.144000", + "duration_ts": 284838912, + "index": 1, + "max_bit_rate": "208568", + "nb_frames": "278163", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T21:52:41.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Secret Life Of Pets (2016)/The.Secret.Life.of.Pets.2016.1080p.BluRay.x264-SPARKS.mkv": { + "format": { + "bit_rate": "7234309", + "duration": "5187.200000", + "filename": "The Secret Life Of Pets (2016)/The.Secret.Life.of.Pets.2016.1080p.BluRay.x264-SPARKS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4690726111", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-11-05T10:53:58.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6592498", + "BPS-eng": "6592498", + "DURATION": "01:26:27.149000000", + "DURATION-eng": "01:26:27.149000000", + "NUMBER_OF_BYTES": "4274533948", + "NUMBER_OF_BYTES-eng": "4274533948", + "NUMBER_OF_FRAMES": "124367", + "NUMBER_OF_FRAMES-eng": "124367", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-05 10:53:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-05 10:53:58", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "01:26:27.200000000", + "DURATION-eng": "01:26:27.200000000", + "NUMBER_OF_BYTES": "414976000", + "NUMBER_OF_BYTES-eng": "414976000", + "NUMBER_OF_FRAMES": "162100", + "NUMBER_OF_FRAMES-eng": "162100", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-11-05 10:53:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-11-05 10:53:58", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Pitch Black/Pitch Black.m4v": { + "format": { + "bit_rate": "1651201", + "duration": "6713.840467", + "filename": "Pitch Black/Pitch Black.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1385738210", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T08:52:05.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1608600257/67085451", + "bit_rate": "1032787", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "16811078/806204743", + "codec_type": "video", + "coded_height": 368, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "431:184", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6713.840467", + "duration_ts": 604245642, + "has_b_frames": 1, + "height": 368, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "160987", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "431:360", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T08:52:05.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165144", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6713.813333", + "duration_ts": 322263040, + "index": 1, + "max_bit_rate": "271128", + "nb_frames": "314710", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T08:52:05.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6713.824000", + "duration_ts": 322263552, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "209807", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T08:52:05.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Man Who Killed Hitler And Then The Bigfoot (2018)/a64cfe5a7394472eabf85f2cbb4192d8.mkv": { + "format": { + "bit_rate": "4388794", + "duration": "5860.818000", + "filename": "The Man Who Killed Hitler And Then The Bigfoot (2018)/a64cfe5a7394472eabf85f2cbb4192d8.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3215241064", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2019-04-13T10:13:09.000000Z", + "title": "RPG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "DURATION": "01:37:40.818000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:37:39.840000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5860.818000", + "duration_ts": 5860818, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:30:50.617000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 6, + "start_time": "0.006000", + "tags": { + "DURATION": "01:30:54.413000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Oceans 13/Oceans 13 - Part 2.avi": { + "format": { + "bit_rate": "1800310", + "duration": "3259.280000", + "filename": "Oceans 13/Oceans 13 - Part 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733464576", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1657334", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 288, + "coded_width": 672, + "display_aspect_ratio": "7:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3259.280000", + "duration_ts": 81482, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": 5, + "nb_frames": "81482", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3259.272000", + "duration_ts": 135803, + "index": 1, + "nb_frames": "135803", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Mission Impossible 1 (1996)/Mission.Impossible.1.1996.BlluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1177192", + "duration": "6612.671667", + "filename": "Mission Impossible 1 (1996)/Mission.Impossible.1.1996.BlluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "973048182", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2017-07-27T13:12:28.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64445", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6612.672000", + "duration_ts": 317408256, + "index": 0, + "max_bit_rate": "98896", + "nb_frames": "309969", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2017-07-27T13:12:28.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1108627", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6612.606000", + "duration_ts": 158702544, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "158544", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2017-07-27T13:12:30.000000Z", + "handler_name": "Mission.Impossible.1.1996.BlluRay.720p.H264.avs.264 - Imported with GPAC 0.4.6-DEV-rev3973", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Ice Age/Ice Age.mp4": { + "format": { + "bit_rate": "1046493", + "duration": "4867.376300", + "filename": "Ice Age/Ice Age.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "636709434", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T19:00:13.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1166990000/48673763", + "bit_rate": "906217", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "36890465/1768953173", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "160:87", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4867.376300", + "duration_ts": 438063867, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "116699", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T19:00:13.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "135338", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4867.200000", + "duration_ts": 233625600, + "index": 1, + "max_bit_rate": "202776", + "nb_frames": "228150", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T19:00:13.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "The Whole Ten Yards/The Whole Ten Yards.mp4": { + "format": { + "bit_rate": "1312330", + "duration": "5940.160000", + "filename": "The Whole Ten Yards/The Whole Ten Yards.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "974431422", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-08T22:12:44.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1281762000/53460647", + "bit_rate": "1175222", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "30642372/1469351017", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5940.071889", + "duration_ts": 534606470, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "142418", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "32:27", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T22:12:44.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131872", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5940.160000", + "duration_ts": 285127680, + "index": 1, + "max_bit_rate": "240232", + "nb_frames": "278445", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-08T22:12:44.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Lilo And Stitch 2 Stitch Has A Glitch (2005)/lilo.and.stitch.2.stitch.has.a.glitch.2005.1080p.bluray.x264-psychd.mkv": { + "format": { + "bit_rate": "6891445", + "duration": "4083.830000", + "filename": "Lilo And Stitch 2 Stitch Has A Glitch (2005)/lilo.and.stitch.2.stitch.has.a.glitch.2005.1080p.bluray.x264-psychd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3517936654", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4083.830000", + "duration_ts": 4083830, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4083.830000", + "duration_ts": 4083830, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Sharknado (2013)/[ www.UsaBit.com ] - Sharknado 2013 TVRip XviD-SiFi.avi": { + "format": { + "bit_rate": "1138533", + "duration": "5158.656000", + "filename": "Sharknado (2013)/[ www.UsaBit.com ] - Sharknado 2013 TVRip XviD-SiFi.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734162944", + "start_time": "0.000000", + "tags": { + "IAS1": "???", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1022119", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 608, + "display_aspect_ratio": "19:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5158.653500", + "duration_ts": 123684, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "123684", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "103704", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5158.656000", + "duration_ts": 214944, + "index": 1, + "nb_frames": "214944", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Simpsons Movie/The.Simpsons.Movie[2007]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "1175403", + "duration": "4992.800000", + "filename": "The Simpsons Movie/The.Simpsons.Movie[2007]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733569024", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "973696", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 672, + "display_aspect_ratio": "42:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4992.800000", + "duration_ts": 124820, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "124820", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "119827200", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "The Twilight Saga Breaking Dawn Part 1 (2011)/The.Twilight.Saga.Breaking.Dawn.Part.1.2011.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1169538", + "duration": "6553.001667", + "filename": "The Twilight Saga Breaking Dawn Part 1 (2011)/The.Twilight.Saga.Breaking.Dawn.Part.1.2011.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "957998442", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-12-12T16:50:07.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64531", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6553.002667", + "duration_ts": 314544128, + "index": 0, + "max_bit_rate": "77544", + "nb_frames": "307172", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-12T16:50:07.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1101089", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6552.921375", + "duration_ts": 157270113, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "157113", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-12T16:50:11.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Annihilation (2018)/Annihilation.2018.1080p.NF.WEB-DL.DD5.1.x264-NTG.mkv": { + "format": { + "bit_rate": "4024664", + "duration": "6929.696000", + "filename": "Annihilation (2018)/Annihilation.2018.1080p.NF.WEB-DL.DD5.1.x264-NTG.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 28, + "probe_score": 100, + "size": "3486212438", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-12T07:02:28.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "3637078", + "BPS-eng": "3637078", + "DURATION": "01:55:29.298000000", + "DURATION-eng": "01:55:29.298000000", + "NUMBER_OF_BYTES": "3150299961", + "NUMBER_OF_BYTES-eng": "3150299961", + "NUMBER_OF_FRAMES": "166137", + "NUMBER_OF_FRAMES-eng": "166137", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:55:29.696000000", + "DURATION-eng": "01:55:29.696000000", + "NUMBER_OF_BYTES": "332625408", + "NUMBER_OF_BYTES-eng": "332625408", + "NUMBER_OF_FRAMES": "216553", + "NUMBER_OF_FRAMES-eng": "216553", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "34", + "BPS-eng": "34", + "DURATION": "01:46:23.419000000", + "DURATION-eng": "01:46:23.419000000", + "NUMBER_OF_BYTES": "27713", + "NUMBER_OF_BYTES-eng": "27713", + "NUMBER_OF_FRAMES": "940", + "NUMBER_OF_FRAMES-eng": "940", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "40", + "BPS-eng": "40", + "DURATION": "01:47:40.454000000", + "DURATION-eng": "01:47:40.454000000", + "NUMBER_OF_BYTES": "32995", + "NUMBER_OF_BYTES-eng": "32995", + "NUMBER_OF_FRAMES": "1098", + "NUMBER_OF_FRAMES-eng": "1098", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "53", + "BPS-eng": "53", + "DURATION": "01:49:50.709000000", + "DURATION-eng": "01:49:50.709000000", + "NUMBER_OF_BYTES": "44355", + "NUMBER_OF_BYTES-eng": "44355", + "NUMBER_OF_FRAMES": "924", + "NUMBER_OF_FRAMES-eng": "924", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "23311", + "NUMBER_OF_BYTES-eng": "23311", + "NUMBER_OF_FRAMES": "879", + "NUMBER_OF_FRAMES-eng": "879", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "01:49:50.125000000", + "DURATION-eng": "01:49:50.125000000", + "NUMBER_OF_BYTES": "25420", + "NUMBER_OF_BYTES-eng": "25420", + "NUMBER_OF_FRAMES": "919", + "NUMBER_OF_FRAMES-eng": "919", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "56", + "BPS-eng": "56", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "44917", + "NUMBER_OF_BYTES-eng": "44917", + "NUMBER_OF_FRAMES": "914", + "NUMBER_OF_FRAMES-eng": "914", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "24023", + "NUMBER_OF_BYTES-eng": "24023", + "NUMBER_OF_FRAMES": "914", + "NUMBER_OF_FRAMES-eng": "914", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:49:50.334000000", + "DURATION-eng": "01:49:50.334000000", + "NUMBER_OF_BYTES": "24394", + "NUMBER_OF_BYTES-eng": "24394", + "NUMBER_OF_FRAMES": "885", + "NUMBER_OF_FRAMES-eng": "885", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "26", + "BPS-eng": "26", + "DURATION": "01:46:23.502000000", + "DURATION-eng": "01:46:23.502000000", + "NUMBER_OF_BYTES": "20989", + "NUMBER_OF_BYTES-eng": "20989", + "NUMBER_OF_FRAMES": "860", + "NUMBER_OF_FRAMES-eng": "860", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "24728", + "NUMBER_OF_BYTES-eng": "24728", + "NUMBER_OF_FRAMES": "881", + "NUMBER_OF_FRAMES-eng": "881", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "38227", + "NUMBER_OF_BYTES-eng": "38227", + "NUMBER_OF_FRAMES": "918", + "NUMBER_OF_FRAMES-eng": "918", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "81", + "BPS-eng": "81", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "65270", + "NUMBER_OF_BYTES-eng": "65270", + "NUMBER_OF_FRAMES": "922", + "NUMBER_OF_FRAMES-eng": "922", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "hin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:47:34.364000000", + "DURATION-eng": "01:47:34.364000000", + "NUMBER_OF_BYTES": "23793", + "NUMBER_OF_BYTES-eng": "23793", + "NUMBER_OF_FRAMES": "878", + "NUMBER_OF_FRAMES-eng": "878", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "25", + "BPS-eng": "25", + "DURATION": "01:49:50.042000000", + "DURATION-eng": "01:49:50.042000000", + "NUMBER_OF_BYTES": "21075", + "NUMBER_OF_BYTES-eng": "21075", + "NUMBER_OF_FRAMES": "979", + "NUMBER_OF_FRAMES-eng": "979", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "36", + "BPS-eng": "36", + "DURATION": "01:47:34.364000000", + "DURATION-eng": "01:47:34.364000000", + "NUMBER_OF_BYTES": "29624", + "NUMBER_OF_BYTES-eng": "29624", + "NUMBER_OF_FRAMES": "923", + "NUMBER_OF_FRAMES-eng": "923", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "kor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "01:46:23.461000000", + "DURATION-eng": "01:46:23.461000000", + "NUMBER_OF_BYTES": "24300", + "NUMBER_OF_BYTES-eng": "24300", + "NUMBER_OF_FRAMES": "901", + "NUMBER_OF_FRAMES-eng": "901", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "27", + "BPS-eng": "27", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "22072", + "NUMBER_OF_BYTES-eng": "22072", + "NUMBER_OF_FRAMES": "785", + "NUMBER_OF_FRAMES-eng": "785", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:49:50.167000000", + "DURATION-eng": "01:49:50.167000000", + "NUMBER_OF_BYTES": "24100", + "NUMBER_OF_BYTES-eng": "24100", + "NUMBER_OF_FRAMES": "920", + "NUMBER_OF_FRAMES-eng": "920", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "24657", + "NUMBER_OF_BYTES-eng": "24657", + "NUMBER_OF_FRAMES": "905", + "NUMBER_OF_FRAMES-eng": "905", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "01:47:34.364000000", + "DURATION-eng": "01:47:34.364000000", + "NUMBER_OF_BYTES": "25620", + "NUMBER_OF_BYTES-eng": "25620", + "NUMBER_OF_FRAMES": "893", + "NUMBER_OF_FRAMES-eng": "893", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "32", + "BPS-eng": "32", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "25807", + "NUMBER_OF_BYTES-eng": "25807", + "NUMBER_OF_FRAMES": "900", + "NUMBER_OF_FRAMES-eng": "900", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "29", + "BPS-eng": "29", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "23690", + "NUMBER_OF_BYTES-eng": "23690", + "NUMBER_OF_FRAMES": "896", + "NUMBER_OF_FRAMES-eng": "896", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "79", + "BPS-eng": "79", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "63765", + "NUMBER_OF_BYTES-eng": "63765", + "NUMBER_OF_FRAMES": "921", + "NUMBER_OF_FRAMES-eng": "921", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "31", + "BPS-eng": "31", + "DURATION": "01:47:34.364000000", + "DURATION-eng": "01:47:34.364000000", + "NUMBER_OF_BYTES": "25105", + "NUMBER_OF_BYTES-eng": "25105", + "NUMBER_OF_FRAMES": "927", + "NUMBER_OF_FRAMES-eng": "927", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "30", + "BPS-eng": "30", + "DURATION": "01:46:23.377000000", + "DURATION-eng": "01:46:23.377000000", + "NUMBER_OF_BYTES": "24320", + "NUMBER_OF_BYTES-eng": "24320", + "NUMBER_OF_FRAMES": "922", + "NUMBER_OF_FRAMES-eng": "922", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6929.696000", + "duration_ts": 6929696, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "28", + "BPS-eng": "28", + "DURATION": "01:47:34.364000000", + "DURATION-eng": "01:47:34.364000000", + "NUMBER_OF_BYTES": "22816", + "NUMBER_OF_BYTES-eng": "22816", + "NUMBER_OF_FRAMES": "924", + "NUMBER_OF_FRAMES-eng": "924", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-12 07:02:28", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-12 07:02:28", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "World War Z (2013)/World.War.Z.2013.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2143091", + "duration": "7383.721667", + "filename": "World War Z (2013)/World.War.Z.2013.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1977998862", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-09-03T02:52:26.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2045474", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7383.626250", + "duration_ts": 177207030, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "177030", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-09-03T02:52:26.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93724", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7383.722667", + "duration_ts": 354418688, + "index": 1, + "max_bit_rate": "104000", + "nb_frames": "346112", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-09-03T02:52:48.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The Siege/The.Siege.1998.DVDRip.XviD.AR.avi": { + "format": { + "bit_rate": "843984", + "duration": "6960.336000", + "filename": "The Siege/The.Siege.1998.DVDRip.XviD.AR.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734302208", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "652604", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6960.328375", + "duration_ts": 166881, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "166881", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "178672", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6960.336000", + "duration_ts": 290014, + "index": 1, + "nb_frames": "290014", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Master A Lego Ninjago Short/aaa75a9f6ab543bf9d12f7fe59991d03.mkv": { + "format": { + "bit_rate": "7352861", + "duration": "318.784000", + "filename": "The Master A Lego Ninjago Short/aaa75a9f6ab543bf9d12f7fe59991d03.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "292996823", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-07T07:15:12.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "00:05:18.784000000", + "DURATION-eng": "00:05:18.784000000", + "NUMBER_OF_BYTES": "25502720", + "NUMBER_OF_BYTES-eng": "25502720", + "NUMBER_OF_FRAMES": "9962", + "NUMBER_OF_FRAMES-eng": "9962", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-07 07:15:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-07 07:15:12", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "318.784000", + "duration_ts": 318784, + "index": 1, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "63", + "BPS-eng": "63", + "DURATION": "00:04:59.966000000", + "DURATION-eng": "00:04:59.966000000", + "NUMBER_OF_BYTES": "2367", + "NUMBER_OF_BYTES-eng": "2367", + "NUMBER_OF_FRAMES": "98", + "NUMBER_OF_FRAMES-eng": "98", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-07 07:15:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-07 07:15:12", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "318.784000", + "duration_ts": 318784, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "50", + "BPS-eng": "50", + "DURATION": "00:04:59.966000000", + "DURATION-eng": "00:04:59.966000000", + "NUMBER_OF_BYTES": "1890", + "NUMBER_OF_BYTES-eng": "1890", + "NUMBER_OF_FRAMES": "77", + "NUMBER_OF_FRAMES-eng": "77", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-07 07:15:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-07 07:15:12", + "language": "dut", + "title": "Dutch" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 3, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6711541", + "BPS-eng": "6711541", + "DURATION": "00:05:18.735000000", + "DURATION-eng": "00:05:18.735000000", + "NUMBER_OF_BYTES": "267400391", + "NUMBER_OF_BYTES-eng": "267400391", + "NUMBER_OF_FRAMES": "7642", + "NUMBER_OF_FRAMES-eng": "7642", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.4.2 ('So High') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-07 07:15:12", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-07 07:15:12", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Twilight (2008)/Twilight.2008.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "918283", + "duration": "7006.250000", + "filename": "Twilight (2008)/Twilight.2008.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "804215875", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-12-11T19:02:29.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64548", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7006.250667", + "duration_ts": 336300032, + "index": 0, + "max_bit_rate": "70840", + "nb_frames": "328418", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-11T19:02:29.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "849813", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7006.165833", + "duration_ts": 168147980, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "167980", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-11T19:02:37.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Nausicaä Of The Valley Of The Wind (1984)/Nausicaä of the Valley of the Wind (1984) 720p BRRiP x264 AAC [Team Nanban].mp4": { + "format": { + "bit_rate": "1161809", + "duration": "7022.080000", + "filename": "Nausicaä Of The Valley Of The Wind (1984)/Nausicaä of the Valley of the Wind (1984) 720p BRRiP x264 AAC [Team Nanban].mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1019790262", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isom", + "creation_time": "2014-06-01T17:39:54.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "21044875/877746", + "bit_rate": "899994", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "438873/21044875", + "codec_type": "video", + "coded_height": 692, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7021.966667", + "duration_ts": 631977000, + "has_b_frames": 2, + "height": 692, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "168359", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-06-01T11:36:56.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126707", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7022.080000", + "duration_ts": 337059840, + "index": 1, + "max_bit_rate": "157808", + "nb_frames": "329160", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-06-01T17:35:09.000000Z", + "language": "jpn" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128247", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7022.080000", + "duration_ts": 337059840, + "index": 2, + "max_bit_rate": "158304", + "nb_frames": "329160", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-06-01T17:27:38.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Tropic Thunder (2008)/Tropic.Thunder[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "918692", + "duration": "6406.948615", + "filename": "Tropic Thunder (2008)/Tropic.Thunder[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735752192", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "797385", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 280, + "coded_width": 664, + "display_aspect_ratio": "83:35", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6406.948615", + "duration_ts": 153613, + "has_b_frames": 1, + "height": 280, + "index": 0, + "level": 5, + "nb_frames": "153613", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 664 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "266956", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Book Of Eli (2010)/The.Book.Of.Eli.2010.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1056364", + "duration": "6723.455000", + "filename": "The Book Of Eli (2010)/The.Book.Of.Eli.2010.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "887802492", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-04-12T19:54:09.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64563", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6723.456000", + "duration_ts": 322725888, + "index": 0, + "max_bit_rate": "77264", + "nb_frames": "315162", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-04-12T19:54:09.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "987881", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6723.383333", + "duration_ts": 161361200, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "161200", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-04-12T19:54:12.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Wall-E/inf-walle.mkv": { + "format": { + "bit_rate": "6427374", + "duration": "5845.611000", + "filename": "Wall-E/inf-walle.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "4696491347", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-11-11T15:50:11.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 528, + "coded_width": 1280, + "display_aspect_ratio": "80:33", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 528, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5845.611000", + "duration_ts": 5845611, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Paths of Glory (1957)/Paths of Glory 1957 720p BDRip x264 AAC-BeLLBoY (Kingdom-Release).mp4": { + "format": { + "bit_rate": "2356514", + "duration": "5301.396667", + "filename": "Paths of Glory (1957)/Paths of Glory 1957 720p BDRip x264 AAC-BeLLBoY (Kingdom-Release).mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1561602030", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2010-10-27T17:05:09.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "2129346", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1200, + "display_aspect_ratio": "5:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5301.337708", + "duration_ts": 127232105, + "has_b_frames": 1, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "127105", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2010-10-27T17:05:09.000000Z", + "handler_name": "Imported with GPAC 0.4.6-DEV (internal rev. 5)", + "language": "und" + }, + "time_base": "1/24000", + "width": 1200 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "223397", + "bits_per_sample": 0, + "channel_layout": "mono", + "channels": 1, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5301.397333", + "duration_ts": 254467072, + "index": 1, + "max_bit_rate": "260520", + "nb_frames": "248503", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-10-27T17:06:24.000000Z", + "handler_name": "English AAC", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "The League Of Extraordinary Gentlemen/tlf-tloeg.bd.cd1.mkv": { + "format": { + "bit_rate": "1675088", + "duration": "3502.976000", + "filename": "The League Of Extraordinary Gentlemen/tlf-tloeg.bd.cd1.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733474279", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-06-06T00:14:43.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 400, + "coded_width": 944, + "display_aspect_ratio": "59:25", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 400, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 944 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "The Neverending Story (1984)/a559a01637cf4708b473a32605a60b11.mkv": { + "format": { + "bit_rate": "11619854", + "duration": "5658.987000", + "filename": "The Neverending Story (1984)/a559a01637cf4708b473a32605a60b11.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8219575870", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-10-19T19:42:33.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "10108439", + "BPS-eng": "10108439", + "DURATION": "01:34:18.987000000", + "DURATION-eng": "01:34:18.987000000", + "NUMBER_OF_BYTES": "7150440619", + "NUMBER_OF_BYTES-eng": "7150440619", + "NUMBER_OF_FRAMES": "135680", + "NUMBER_OF_FRAMES-eng": "135680", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-19 19:42:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-19 19:42:33", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "01:34:18.955000000", + "DURATION-eng": "01:34:18.955000000", + "NUMBER_OF_BYTES": "1067421080", + "NUMBER_OF_BYTES-eng": "1067421080", + "NUMBER_OF_FRAMES": "530527", + "NUMBER_OF_FRAMES-eng": "530527", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v16.0.0 ('Protest') 64-bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-10-19 19:42:33", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-10-19 19:42:33", + "language": "eng", + "title": "English DTS 1509 kbps" + }, + "time_base": "1/1000" + } + ] + }, + "Blade Trinity/Blade Trinity XviD MP3 DVD-Rip.avi": { + "format": { + "bit_rate": "892730", + "duration": "6510.080000", + "filename": "Blade Trinity/Blade Trinity XviD MP3 DVD-Rip.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "726468608", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2066/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "771074", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "display_aspect_ratio": "3:2", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6510.080000", + "duration_ts": 162752, + "has_b_frames": 1, + "height": 480, + "index": 0, + "level": 5, + "nb_frames": "162752", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "91137096", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "Mission Impossible 3 (2006)/Mission.Impossible.3.2006.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1234624", + "duration": "7524.586667", + "filename": "Mission Impossible 3 (2006)/Mission.Impossible.3.2006.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1161254873", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2014-02-25T03:14:25.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "96953", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7524.586667", + "duration_ts": 361180160, + "index": 0, + "max_bit_rate": "143904", + "nb_frames": "352715", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2014-02-25T03:10:27.000000Z", + "handler_name": "Sound Media Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1133569", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7524.517000", + "duration_ts": 180588408, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "180408", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2014-02-25T03:14:27.000000Z", + "handler_name": "Impossible.3.2006.BluRay.720p.H264.avs.264@GPAC0.5.1-DEV-rev4065", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Black Dynamite (2009)/Blackdynamite-emery1337x.avi": { + "format": { + "bit_rate": "1162515", + "duration": "5054.971638", + "filename": "Black Dynamite (2009)/Blackdynamite-emery1337x.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734560256", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1025169", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 624, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5054.971638", + "duration_ts": 121198, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "121198", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "210624", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Gross Pointe Blank/Grosse Point Blank [DivX].AVI": { + "format": { + "bit_rate": "922001", + "duration": "6181.040000", + "filename": "Gross Pointe Blank/Grosse Point Blank [DivX].AVI", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "712366080", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "756705", + "codec_long_name": "MPEG-4 part 2 Microsoft variant version 3", + "codec_name": "msmpeg4v3", + "codec_tag": "0x33564944", + "codec_tag_string": "DIV3", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6181.040000", + "duration_ts": 154526, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": -99, + "nb_frames": "154526", + "pix_fmt": "yuv420p", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "123616800", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/20000" + } + ] + }, + "Mission Impossible Rogue Nation (2015)/Mission.Impossible.Rogue.Nation.2015.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1161495", + "duration": "7893.801667", + "filename": "Mission Impossible Rogue Nation (2015)/Mission.Impossible.Rogue.Nation.2015.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1146076836", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2015-10-31T11:59:19.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64532", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7893.802667", + "duration_ts": 378902528, + "index": 0, + "max_bit_rate": "96112", + "nb_frames": "370022", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-10-31T11:59:19.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1093046", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7893.719167", + "duration_ts": 189449260, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "189260", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-10-31T11:59:26.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Terminator Genisys (2015)/Terminator.5.Genisys.2015.1080p.WEB-DL.DD5.1.H.264-ehMD.mkv": { + "format": { + "bit_rate": "4869798", + "duration": "7551.959000", + "filename": "Terminator Genisys (2015)/Terminator.5.Genisys.2015.1080p.WEB-DL.DD5.1.H.264-ehMD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4597065241", + "start_time": "0.000000", + "tags": { + "creation_time": "2015-12-15T05:26:58.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "2997/125", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "125/5994", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1912, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "239:100", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 1, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1912 + } + ] + }, + "The Greatest Showman (2017)/The.Greatest.Showman.2017.MULTi.1080p.WEB-DL.H264-SiGeRiS.mkv": { + "format": { + "bit_rate": "5085083", + "duration": "6326.987000", + "filename": "The Greatest Showman (2017)/The.Greatest.Showman.2017.MULTi.1080p.WEB-DL.H264-SiGeRiS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4021656870", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-03-20T09:46:39.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 798, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "320:133", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 798, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "4541482", + "BPS-eng": "4541482", + "DURATION": "01:45:26.987000000", + "DURATION-eng": "01:45:26.987000000", + "NUMBER_OF_BYTES": "3591737692", + "NUMBER_OF_BYTES-eng": "3591737692", + "NUMBER_OF_FRAMES": "151696", + "NUMBER_OF_FRAMES-eng": "151696", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-20 09:46:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-20 09:46:39" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "160173", + "BPS-eng": "160173", + "DURATION": "01:44:48.021000000", + "DURATION-eng": "01:44:48.021000000", + "NUMBER_OF_BYTES": "125896635", + "NUMBER_OF_BYTES-eng": "125896635", + "NUMBER_OF_FRAMES": "294751", + "NUMBER_OF_FRAMES-eng": "294751", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-20 09:46:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-20 09:46:39", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:44:48.192000000", + "DURATION-eng": "01:44:48.192000000", + "NUMBER_OF_BYTES": "301833216", + "NUMBER_OF_BYTES-eng": "301833216", + "NUMBER_OF_FRAMES": "196506", + "NUMBER_OF_FRAMES-eng": "196506", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-20 09:46:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-20 09:46:39", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6326.987000", + "duration_ts": 6326987, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "59", + "BPS-eng": "59", + "DURATION": "01:44:27.809000000", + "DURATION-eng": "01:44:27.809000000", + "NUMBER_OF_BYTES": "46872", + "NUMBER_OF_BYTES-eng": "46872", + "NUMBER_OF_FRAMES": "1683", + "NUMBER_OF_FRAMES-eng": "1683", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.8.0 ('River Man') 32bit built on Mar 27 2015 16:18:02", + "_STATISTICS_WRITING_DATE_UTC": "2018-03-20 09:46:39", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-03-20 09:46:39", + "language": "fre", + "title": "FR" + }, + "time_base": "1/1000" + } + ] + }, + "The Wandering Earth (2019)/65efcbb1e7904638bd5c542eec2669ea.mkv": { + "format": { + "bit_rate": "8000507", + "duration": "7530.125000", + "filename": "The Wandering Earth (2019)/65efcbb1e7904638bd5c542eec2669ea.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 33, + "probe_score": 100, + "size": "7530602474", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-04-30T08:35:03.000000Z", + "encoder": "libebml v1.3.5 + libmatroska v1.4.8" + } + }, + "streams": [ + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "7226485", + "DURATION-eng": "02:05:30.125000000", + "NUMBER_OF_BYTES-eng": "6802042528", + "NUMBER_OF_FRAMES-eng": "180723", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "768000", + "DURATION-eng": "02:05:26.048000000", + "NUMBER_OF_BYTES-eng": "722500608", + "NUMBER_OF_FRAMES-eng": "235189", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "chi", + "title": "Mandarin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "80", + "DURATION-eng": "01:58:10.791000000", + "NUMBER_OF_BYTES-eng": "71400", + "NUMBER_OF_FRAMES-eng": "2244", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "01:58:00.333000000", + "NUMBER_OF_BYTES-eng": "52873", + "NUMBER_OF_FRAMES-eng": "1653", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "94", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "84864", + "NUMBER_OF_FRAMES-eng": "1806", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "ara" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "60", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "53826", + "NUMBER_OF_FRAMES-eng": "1801", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "61", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "55262", + "NUMBER_OF_FRAMES-eng": "1771", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "62", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "56273", + "NUMBER_OF_FRAMES-eng": "1749", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "ger" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "106", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "95416", + "NUMBER_OF_FRAMES-eng": "1802", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "gre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "64", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "57497", + "NUMBER_OF_FRAMES-eng": "1788", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "74", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "66726", + "NUMBER_OF_FRAMES-eng": "2118", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "spa", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "64", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "57985", + "NUMBER_OF_FRAMES-eng": "1795", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "spa", + "title": "European" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "60", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "54272", + "NUMBER_OF_FRAMES-eng": "1791", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "62", + "DURATION-eng": "01:59:32.208000000", + "NUMBER_OF_BYTES-eng": "55970", + "NUMBER_OF_FRAMES-eng": "1766", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "87", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "78060", + "NUMBER_OF_FRAMES-eng": "1802", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "heb" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "146", + "DURATION-eng": "01:59:31.625000000", + "NUMBER_OF_BYTES-eng": "130898", + "NUMBER_OF_FRAMES-eng": "1773", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "hin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "57", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "51555", + "NUMBER_OF_FRAMES-eng": "1804", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 17, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "53690", + "NUMBER_OF_FRAMES-eng": "1797", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "ind" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 18, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "62", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "55906", + "NUMBER_OF_FRAMES-eng": "1795", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "ita" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 19, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "55", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "49375", + "NUMBER_OF_FRAMES-eng": "1455", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 20, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "61", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "54777", + "NUMBER_OF_FRAMES-eng": "1788", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "nob" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 21, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "56", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "50951", + "NUMBER_OF_FRAMES-eng": "1794", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 22, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "60", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "53823", + "NUMBER_OF_FRAMES-eng": "1791", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 23, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "53153", + "NUMBER_OF_FRAMES-eng": "1789", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 24, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "59", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "53436", + "NUMBER_OF_FRAMES-eng": "1798", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "por", + "title": "Brazilian" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 25, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "68", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "60987", + "NUMBER_OF_FRAMES-eng": "1795", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 26, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "90", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "80802", + "NUMBER_OF_FRAMES-eng": "1738", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "rus" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 27, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "62", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "55719", + "NUMBER_OF_FRAMES-eng": "1773", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "swe" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 28, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "151", + "DURATION-eng": "01:59:32.125000000", + "NUMBER_OF_BYTES-eng": "135896", + "NUMBER_OF_FRAMES-eng": "1805", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "tha" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 29, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "62", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "55955", + "NUMBER_OF_FRAMES-eng": "1805", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "tur" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 30, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "84", + "DURATION-eng": "01:59:32.083000000", + "NUMBER_OF_BYTES-eng": "75943", + "NUMBER_OF_FRAMES-eng": "1796", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "vie" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 31, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "52", + "DURATION-eng": "01:57:39.958000000", + "NUMBER_OF_BYTES-eng": "46412", + "NUMBER_OF_FRAMES-eng": "1739", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7530.125000", + "duration_ts": 7530125, + "index": 32, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "55", + "DURATION-eng": "01:59:32.041000000", + "NUMBER_OF_BYTES-eng": "49388", + "NUMBER_OF_FRAMES-eng": "1798", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-30 08:35:03", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Tron Legacy (2010)/Tron.Legacy.2010.BluRay.720p.DTS.x264-CHD.mkv": { + "format": { + "bit_rate": "7476389", + "duration": "7508.672000", + "filename": "Tron Legacy (2010)/Tron.Legacy.2010.BluRay.720p.DTS.x264-CHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7017219167", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-03-01T01:21:24.000000Z", + "encoder": "libebml v0.7.9 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English DTS-HDMA core 5.1 1509Kbps" + }, + "time_base": "1/1000" + } + ] + }, + "Mad Max Fury Road - Black and Chrome Edition (2015)/Mad.Max.Fury.Road.2015.BLACK.N.CHROME.EDiTiON.720p.BluRay.x264-SADPANDA.mkv": { + "format": { + "bit_rate": "5329777", + "duration": "7223.360000", + "filename": "Mad Max Fury Road - Black and Chrome Edition (2015)/Mad.Max.Fury.Road.2015.BLACK.N.CHROME.EDiTiON.720p.BluRay.x264-SADPANDA.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "4812362630", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9047493", + "BPS-eng": "9047493", + "DURATION": "02:00:23.341000000", + "DURATION-eng": "02:00:23.341000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "8169141188", + "NUMBER_OF_BYTES-eng": "8169141188", + "NUMBER_OF_FRAMES": "173187", + "NUMBER_OF_FRAMES-eng": "173187", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-31 20:44:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-31 20:44:18" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "02:00:23.360000000", + "DURATION-eng": "02:00:23.360000000", + "NUMBER_OF_BYTES": "346721280", + "NUMBER_OF_BYTES-eng": "346721280", + "NUMBER_OF_FRAMES": "225730", + "NUMBER_OF_FRAMES-eng": "225730", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-03-31 20:44:18", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-03-31 20:44:18", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Run Fat Boy Run (2007)/Run Fat Boy Run[2007]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "1018637", + "duration": "5765.440000", + "filename": "Run Fat Boy Run (2007)/Run Fat Boy Run[2007]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734111744", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "880934", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 664, + "display_aspect_ratio": "83:34", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5765.440000", + "duration_ts": 144136, + "has_b_frames": 0, + "height": 272, + "index": 0, + "level": 0, + "nb_frames": "144136", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 664 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "240216", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Family Fang (2015)/the.family.fang.2015.limited.1080p.bluray.x264-veto.mkv": { + "format": { + "bit_rate": "8812194", + "duration": "6388.549000", + "filename": "The Family Fang (2015)/the.family.fang.2015.limited.1080p.bluray.x264-veto.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7037141717", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-02-01T21:36:35.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8041826", + "BPS-eng": "8041826", + "DURATION": "01:46:28.549000000", + "DURATION-eng": "01:46:28.549000000", + "NUMBER_OF_BYTES": "6421950322", + "NUMBER_OF_BYTES-eng": "6421950322", + "NUMBER_OF_FRAMES": "153172", + "NUMBER_OF_FRAMES-eng": "153172", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-01 21:36:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-01 21:36:35", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "767999", + "BPS-eng": "767999", + "DURATION": "01:46:28.534000000", + "DURATION-eng": "01:46:28.534000000", + "NUMBER_OF_BYTES": "613299200", + "NUMBER_OF_BYTES-eng": "613299200", + "NUMBER_OF_FRAMES": "598925", + "NUMBER_OF_FRAMES-eng": "598925", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.2.0 ('World of Adventure') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.2.0 ('World of Adventure') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-02-01 21:36:35", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-02-01 21:36:35", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Drawing Flies/Drawing Flies.avi": { + "format": { + "bit_rate": "1386847", + "duration": "4230.184292", + "filename": "Drawing Flies/Drawing Flies.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733327360", + "start_time": "0.000000" + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1251855", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 416, + "coded_width": 560, + "display_aspect_ratio": "35:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4230.184292", + "duration_ts": 101423, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "101423", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 560 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "50702", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Shaolin Soccer/shaolinsoccer2273.avi": { + "format": { + "bit_rate": "950514", + "duration": "6123.331665", + "filename": "Shaolin Soccer/shaolinsoccer2273.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "727539712", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "841133", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 288, + "coded_width": 512, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6123.331665", + "duration_ts": 146813, + "has_b_frames": 1, + "height": 288, + "index": 0, + "level": -99, + "nb_frames": "146813", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "99384", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/32000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6123.276000", + "duration_ts": 170091, + "index": 1, + "nb_frames": "170091", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "32000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "9/250" + } + ] + }, + "Hellboy (2004)/Hellboy.avi": { + "format": { + "bit_rate": "1032615", + "duration": "7318.080000", + "filename": "Hellboy (2004)/Hellboy.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "944594944", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "903390", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7318.068068", + "duration_ts": 175458, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "175458", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "116520", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7318.080000", + "duration_ts": 304920, + "index": 1, + "nb_frames": "304920", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Rachel Getting Married (2008)/Rachel Getting Married[2008]DvDrip[Eng]-FXG.avi": { + "format": { + "bit_rate": "868510", + "duration": "6762.595929", + "filename": "Rachel Getting Married (2008)/Rachel Getting Married[2008]DvDrip[Eng]-FXG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734173184", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "747149", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 320, + "coded_width": 616, + "display_aspect_ratio": "77:40", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6762.595929", + "duration_ts": 162140, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "162140", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 616 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "94676343", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/14000" + } + ] + }, + "The Master of Disguise/The Master of Disguise.[2002]DVDrip[Eng].avi": { + "format": { + "bit_rate": "1133452", + "duration": "4619.840000", + "filename": "The Master of Disguise/The Master of Disguise.[2002]DVDrip[Eng].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "654546332", + "start_time": "0.000000", + "tags": { + "encoder": "" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "997630", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x30355844", + "codec_tag_string": "DX50", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 304, + "coded_width": 624, + "display_aspect_ratio": "16384:7981", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4619.840000", + "duration_ts": 115496, + "has_b_frames": 0, + "height": 304, + "index": 0, + "level": 1, + "nb_frames": "115496", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "311296:311259", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "123288", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4619.833469", + "duration_ts": 176853, + "index": 1, + "nb_frames": "176853", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "32/1225" + } + ] + }, + "School For Scoundrels/School.For.Scoundrels.UNRATED.DVDRip.XviD-LMG.avi": { + "format": { + "bit_rate": "908912", + "duration": "6462.462462", + "filename": "School For Scoundrels/School.For.Scoundrels.UNRATED.DVDRip.XviD-LMG.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734226432", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "764990", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 624, + "display_aspect_ratio": "39:16", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6462.462462", + "duration_ts": 154944, + "has_b_frames": 0, + "height": 256, + "index": 0, + "level": 0, + "nb_frames": "154944", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131224", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6462.120000", + "duration_ts": 269255, + "index": 1, + "nb_frames": "269255", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Batman V Superman Dawn Of Justice (2016)/Batman.v.Superman.Dawn.of.Justice.2016.EXTENDED.720p.BluRay.x264-SPARKS.mkv": { + "format": { + "bit_rate": "4016731", + "duration": "10953.664000", + "filename": "Batman V Superman Dawn Of Justice (2016)/Batman.v.Superman.Dawn.of.Justice.2016.EXTENDED.720p.BluRay.x264-SPARKS.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5499741472", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf56.40.101" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "640:267", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 50, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "8786274", + "BPS-eng": "8786274", + "DURATION": "03:02:33.585000000", + "DURATION-eng": "03:02:33.585000000", + "ENCODER": "Lavc56.60.100 libx264", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "12030150220", + "NUMBER_OF_BYTES-eng": "12030150220", + "NUMBER_OF_FRAMES": "262623", + "NUMBER_OF_FRAMES-eng": "262623", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-07-05 01:47:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-07-05 01:47:32" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "03:02:33.664000000", + "DURATION-eng": "03:02:33.664000000", + "LANGUAGE": "eng", + "NUMBER_OF_BYTES": "876293120", + "NUMBER_OF_BYTES-eng": "876293120", + "NUMBER_OF_FRAMES": "342302", + "NUMBER_OF_FRAMES-eng": "342302", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-07-05 01:47:32", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-07-05 01:47:32" + }, + "time_base": "1/1000" + } + ] + }, + "Battle For The Planet of the Apes (1973)/Battle.For.The.Planet.of.the.Apes.1973.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1825169", + "duration": "5192.020000", + "filename": "Battle For The Planet of the Apes (1973)/Battle.For.The.Planet.of.the.Apes.1973.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1184539826", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-03-01T15:39:02.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1730879", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5192.020167", + "duration_ts": 124608484, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "124484", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-03-01T15:39:02.000000Z", + "handler_name": "For.The.Planet.of.the.Apes.1973.1080p.BrRip.x264.BOKUTOX.YIFY.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5100.885333", + "duration_ts": 244842496, + "index": 1, + "max_bit_rate": "98440", + "nb_frames": "239104", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-03-01T04:43:20.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Jackie Brown/Jackie Brown.m4v": { + "format": { + "bit_rate": "1687611", + "duration": "9260.722822", + "filename": "Jackie Brown/Jackie Brown.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1953562219", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-07T20:12:40.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "888270463/37049167", + "bit_rate": "1102983", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "37049167/1776540926", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "853:480", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9260.722822", + "duration_ts": 833465054, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "222030", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "240/1", + "refs": 1, + "sample_aspect_ratio": "853:720", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T20:12:40.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "131481", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9259.776000", + "duration_ts": 444469248, + "index": 1, + "max_bit_rate": "225280", + "nb_frames": "434052", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T20:12:40.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "9259.776000", + "duration_ts": 444469248, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "289368", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-07T20:12:40.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Sumuru (2003)/Sumuru (2003).avi": { + "format": { + "bit_rate": "1086184", + "duration": "5423.600000", + "filename": "Sumuru (2003)/Sumuru (2003).avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "736378880", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "961480", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 608, + "display_aspect_ratio": "19:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5423.600000", + "duration_ts": 135590, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "135590", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111792", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5423.592000", + "duration_ts": 225983, + "index": 1, + "nb_frames": "225983", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Cowboy Bebop (2001)/Cowboy.Bebop.The.Movie.2001.720p.BluRay.x264-THORA [PublicHD].mkv": { + "format": { + "bit_rate": "5565256", + "duration": "6911.424000", + "filename": "Cowboy Bebop (2001)/Cowboy.Bebop.The.Movie.2001.720p.BluRay.x264-THORA [PublicHD].mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "4807980725", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-08-02T00:05:42.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Cowboy Bebop - Tengoku no Tobira (2001) (Knockin` on Heaven`s Door)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English (stereo)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn", + "title": "Japanese (5.1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6911.424000", + "duration_ts": 6911424, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English subs" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6911.424000", + "duration_ts": 622028160, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "MERKIN__.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Bad Boys (1995)/Bad Boys KLAXXON.avi": { + "format": { + "bit_rate": "1516341", + "duration": "6624.800000", + "filename": "Bad Boys (1995)/Bad Boys KLAXXON.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1255682048", + "start_time": "0.000000", + "tags": { + "encoder": "FairUse Wizard - http://fairusewizard.com" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1122682", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 336, + "coded_width": 608, + "display_aspect_ratio": "38:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6624.800000", + "duration_ts": 165620, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 5, + "nb_frames": "165620", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "317990400", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "The Hitmans Bodyguard (2017)/The.Hitmans.Bodyguard.2017.1080p.WEB-DL.6CH.MkvCage.mkv": { + "format": { + "bit_rate": "2491661", + "duration": "7091.359000", + "filename": "The Hitmans Bodyguard (2017)/The.Hitmans.Bodyguard.2017.1080p.WEB-DL.6CH.MkvCage.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "2208658481", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-27T02:37:50.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "The.Hitmans.Bodyguard.2017.1080p.WEB-DL.6CH.MkvCage" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "191789", + "BPS-eng": "191789", + "DURATION": "01:58:11.328000000", + "DURATION-eng": "01:58:11.328000000", + "NUMBER_OF_BYTES": "170004893", + "NUMBER_OF_BYTES-eng": "170004893", + "NUMBER_OF_FRAMES": "166203", + "NUMBER_OF_FRAMES-eng": "166203", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-27 02:37:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-27 02:37:50" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2297927", + "BPS-eng": "2297927", + "DURATION": "01:58:11.126000000", + "DURATION-eng": "01:58:11.126000000", + "NUMBER_OF_BYTES": "2036861699", + "NUMBER_OF_BYTES-eng": "2036861699", + "NUMBER_OF_FRAMES": "170017", + "NUMBER_OF_FRAMES-eng": "170017", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-27 02:37:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-27 02:37:50" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7091.359000", + "duration_ts": 7091359, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1", + "BPS-eng": "1", + "DURATION": "01:43:00.958000000", + "DURATION-eng": "01:43:00.958000000", + "NUMBER_OF_BYTES": "1305", + "NUMBER_OF_BYTES-eng": "1305", + "NUMBER_OF_FRAMES": "48", + "NUMBER_OF_FRAMES-eng": "48", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-27 02:37:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-27 02:37:50", + "language": "eng", + "title": "Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7091.359000", + "duration_ts": 7091359, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "62", + "BPS-eng": "62", + "DURATION": "01:56:30.833000000", + "DURATION-eng": "01:56:30.833000000", + "NUMBER_OF_BYTES": "54428", + "NUMBER_OF_BYTES-eng": "54428", + "NUMBER_OF_FRAMES": "1724", + "NUMBER_OF_FRAMES-eng": "1724", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-27 02:37:50", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-27 02:37:50", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + } + ] + }, + "The Big Lebowski (1998)/The.Big.Lebowski.1998.HDDVD.720p.H264.mp4": { + "format": { + "bit_rate": "959922", + "duration": "6797.333333", + "filename": "The Big Lebowski (1998)/The.Big.Lebowski.1998.HDDVD.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "815613780", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-08-27T16:45:35.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64543", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6797.333333", + "duration_ts": 326272000, + "index": 0, + "max_bit_rate": "71016", + "nb_frames": "318625", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-08-27T16:45:35.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "891451", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6797.248792", + "duration_ts": 163133971, + "has_b_frames": 2, + "height": 720, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "162971", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-08-27T16:45:39.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "Food Inc/zoom-food.avi": { + "format": { + "bit_rate": "1045337", + "duration": "5624.136000", + "filename": "Food Inc/zoom-food.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734889984", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "901729", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5624.124124", + "duration_ts": 134844, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "134844", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130896", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5624.136000", + "duration_ts": 234339, + "index": 1, + "nb_frames": "234339", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Harry Potter And The Prisoner Of Azkaban (2004)/1a3cb3e5642044e087507989bc84906a.mkv": { + "format": { + "bit_rate": "14691572", + "duration": "8502.744000", + "filename": "Harry Potter And The Prisoner Of Azkaban (2004)/1a3cb3e5642044e087507989bc84906a.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 13, + "probe_score": 100, + "size": "15614834816", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-01-07T06:06:50.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "color_primaries": "bt2020", + "color_range": "tv", + "color_space": "bt2020nc", + "color_transfer": "smpte2084", + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 800, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "13376841", + "DURATION-eng": "02:21:42.744000000", + "NUMBER_OF_BYTES-eng": "14217482460", + "NUMBER_OF_FRAMES-eng": "203862", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1280000", + "DURATION-eng": "02:21:42.496000000", + "NUMBER_OF_BYTES-eng": "1360399360", + "NUMBER_OF_FRAMES-eng": "265703", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "49", + "DURATION-eng": "02:20:44.811000000", + "NUMBER_OF_BYTES-eng": "52273", + "NUMBER_OF_FRAMES-eng": "1421", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "54", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "57910", + "NUMBER_OF_FRAMES-eng": "1625", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "26050", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "27568999", + "NUMBER_OF_FRAMES-eng": "2880", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "chi", + "title": "Mandarin Traditional" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "25909", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "27420066", + "NUMBER_OF_FRAMES-eng": "2862", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "eng", + "title": "Cantonese" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "45", + "DURATION-eng": "02:21:06.375000000", + "NUMBER_OF_BYTES-eng": "47900", + "NUMBER_OF_FRAMES-eng": "1378", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "cze" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "42140", + "NUMBER_OF_FRAMES-eng": "1077", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "39", + "DURATION-eng": "02:21:06.457000000", + "NUMBER_OF_BYTES-eng": "41282", + "NUMBER_OF_FRAMES-eng": "1121", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "44494", + "NUMBER_OF_FRAMES-eng": "1465", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "51095", + "NUMBER_OF_FRAMES-eng": "1367", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "nor" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "42", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "45185", + "NUMBER_OF_FRAMES-eng": "1333", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "pol" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8502.744000", + "duration_ts": 8502744, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38", + "DURATION-eng": "02:21:06.458000000", + "NUMBER_OF_BYTES-eng": "40758", + "NUMBER_OF_FRAMES-eng": "1170", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-07 06:06:50", + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "From Hell (2001)/From Hell.2001.BRRip.XviD.AC3-VLiS.avi": { + "format": { + "bit_rate": "1595427", + "duration": "7332.253303", + "filename": "From Hell (2001)/From Hell.2001.BRRip.XviD.AC3-VLiS.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1462259712", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2542/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2500000/104271", + "bit_rate": "1138055", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "104271/2500000", + "codec_type": "video", + "coded_height": 304, + "coded_width": 720, + "display_aspect_ratio": "45:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7332.253303", + "duration_ts": 175798, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": 5, + "nb_frames": "175798", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2500000/104271", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "104271/2500000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "410606185", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "They Live (1988)/They.Live.1988.BluRay.720p.H264.mp4": { + "format": { + "bit_rate": "1236719", + "duration": "5494.100000", + "filename": "They Live (1988)/They.Live.1988.BluRay.720p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "849332604", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2012-06-19T17:23:47.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64462", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5494.101333", + "duration_ts": 263716864, + "index": 0, + "max_bit_rate": "77184", + "nb_frames": "257536", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-19T17:23:47.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "24/1", + "bit_rate": "1168250", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5494.041667", + "duration_ts": 131857000, + "has_b_frames": 2, + "height": 544, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "131857", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 2000, + "start_time": "0.083333", + "tags": { + "creation_time": "2012-06-19T17:23:49.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 1280 + } + ] + }, + "The Incredibles (2004)/The.Incredibles.2004.1080p.BluRay.DTS.x265.10bit.HEVC.mkv": { + "format": { + "bit_rate": "2976159", + "duration": "6925.846000", + "filename": "The Incredibles (2004)/The.Incredibles.2004.1080p.BluRay.DTS.x265.10bit.HEVC.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2576553046", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2018-06-10T08:16:27Z", + "ENCODER": "Lavf57.7.2", + "title": "The Incredibles" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "codec_long_name": "H.265 / HEVC (High Efficiency Video Coding)", + "codec_name": "hevc", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "960:401", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "has_b_frames": 2, + "height": 802, + "index": 0, + "level": 120, + "pix_fmt": "yuv420p10le", + "profile": "Main 10", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6925.846000", + "duration_ts": 6925846, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The To Do List (2013)/888cd3cde18e463fb541ec5804316dbf.mkv": { + "format": { + "bit_rate": "11867601", + "duration": "6233.310000", + "filename": "The To Do List (2013)/888cd3cde18e463fb541ec5804316dbf.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "9246805098", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-23T19:18:34.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 0, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "640000", + "DURATION-eng": "01:43:53.248000000", + "NUMBER_OF_BYTES-eng": "498659840", + "NUMBER_OF_FRAMES-eng": "194789", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-23 19:18:34", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "83327", + "DURATION-eng": "01:43:53.258000000", + "NUMBER_OF_BYTES-eng": "64925074", + "NUMBER_OF_FRAMES-eng": "292184", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-23 19:18:34", + "language": "eng", + "title": "Commentary with Writer/Director Maggie Carey and Actor Bill Hader" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6233.310000", + "duration_ts": 6233310, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "92", + "DURATION-eng": "01:43:24.114000000", + "NUMBER_OF_BYTES-eng": "71857", + "NUMBER_OF_FRAMES-eng": "1833", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-23 19:18:34", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6233.310000", + "duration_ts": 6233310, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "117", + "DURATION-eng": "01:42:09.874000000", + "NUMBER_OF_BYTES-eng": "90362", + "NUMBER_OF_FRAMES-eng": "1889", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-23 19:18:34", + "language": "eng", + "title": "English for Commentary track" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 4, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS-eng": "11141296", + "DURATION-eng": "01:43:53.227000000", + "NUMBER_OF_BYTES-eng": "8680778998", + "NUMBER_OF_FRAMES-eng": "149448", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-23 19:18:34" + }, + "time_base": "1/1000", + "width": 1920 + } + ] + }, + "Family Guy - Stewie Griffin The Untold Story/Family.Guy.Stewie.Griffin.The.Untold.Story.XviD.avi": { + "format": { + "bit_rate": "1103666", + "duration": "5299.257591", + "filename": "Family Guy - Stewie Griffin The Untold Story/Family.Guy.Stewie.Griffin.The.Untold.Story.XviD.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "731076608", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "966882", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 512, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5299.257591", + "duration_ts": 127055, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "127055", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "124056", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5298.936000", + "duration_ts": 220789, + "index": 1, + "nb_frames": "220789", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Fiddler On The Roof (1971)/7b2fde833c3b40c0bce628e7bc3d2915.mkv": { + "format": { + "bit_rate": "6402331", + "duration": "10867.360000", + "filename": "Fiddler On The Roof (1971)/7b2fde833c3b40c0bce628e7bc3d2915.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "8697055458", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-01-30T16:24:11Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5760141", + "DURATION-eng": "03:01:07.357000000", + "NUMBER_OF_BYTES-eng": "7824689811", + "NUMBER_OF_FRAMES-eng": "260556", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-31 22:40:53" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "03:01:07.360000000", + "NUMBER_OF_BYTES-eng": "608572160", + "NUMBER_OF_FRAMES-eng": "339605", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-31 22:40:53", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "192000", + "DURATION-eng": "03:01:07.360000000", + "NUMBER_OF_BYTES-eng": "260816640", + "NUMBER_OF_FRAMES-eng": "339605", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-31 22:40:53", + "language": "eng", + "title": "Stereo commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10867.360000", + "duration_ts": 10867360, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "38", + "DURATION-eng": "02:58:31.158000000", + "NUMBER_OF_BYTES-eng": "52197", + "NUMBER_OF_FRAMES-eng": "2099", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v30.1.0 ('Forever And More') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-01-31 22:40:53", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Luxo Jr (1986)/luxo.jr.1986.720p.bluray.x264-sinners.mkv": { + "format": { + "bit_rate": "4653980", + "duration": "131.168000", + "filename": "Luxo Jr (1986)/luxo.jr.1986.720p.bluray.x264-sinners.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "76306658", + "start_time": "0.000000", + "tags": { + "creation_time": "2007-10-28T01:02:15.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1164, + "display_aspect_ratio": "97:60", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1164 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Saving Private Ryan/Saving Private Ryan.m4v": { + "format": { + "bit_rate": "2981417", + "duration": "10168.191333", + "filename": "Saving Private Ryan/Saving Private Ryan.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "3789453246", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-05-09T21:58:02.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "365683500/15252287", + "bit_rate": "2620006", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "15252287/731367000", + "codec_type": "video", + "coded_height": 480, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "85:48", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10168.191333", + "duration_ts": 915137220, + "has_b_frames": 1, + "height": 480, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "243789", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "85:72", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-09T21:58:02.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164291", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10168.149333", + "duration_ts": 488071168, + "index": 1, + "max_bit_rate": "262416", + "nb_frames": "476632", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-09T21:58:02.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "10168.160000", + "duration_ts": 488071680, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "317755", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-05-09T21:58:02.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Block Party (2005)/Dave.Chappelle.Block.Party.DVDRip.XViD.AC3.5.1-TECHNiQUE.avi": { + "format": { + "bit_rate": "1999747", + "duration": "5886.720000", + "filename": "Block Party (2005)/Dave.Chappelle.Block.Party.DVDRip.XViD.AC3.5.1-TECHNiQUE.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1471494144", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1542107", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 352, + "coded_width": 672, + "display_aspect_ratio": "21:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5886.720000", + "duration_ts": 147168, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "147168", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 672 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "329638845", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Ghost In The Shell Arise Border 1 Ghost Pain (2013)/Ghost.in.the.Shell.Arise-Border.1.Ghost.Pain.2013.720p.BluRay.x264-CtrlHD.mkv": { + "format": { + "bit_rate": "5993388", + "duration": "3502.528000", + "filename": "Ghost In The Shell Arise Border 1 Ghost Pain (2013)/Ghost.in.the.Shell.Arise-Border.1.Ghost.Pain.2013.720p.BluRay.x264-CtrlHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2624001484", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-07-24T00:26:39.000000Z", + "encoder": "libebml v0.8.0 + libmatroska v0.9.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn", + "title": "Ghost in the Shell Arise - Border 1: Ghost Pain (2013)" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3502.528000", + "duration_ts": 3502528, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "I Love You, Man (2009)/I.Love.You.Man.2009.1080p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "1984906", + "duration": "6286.378333", + "filename": "I Love You, Man (2009)/I.Love.You.Man.2009.1080p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1559734219", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-12-24T21:57:21.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1884836", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6286.196583", + "duration_ts": 603474872, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "150718", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-24T21:57:21.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95976", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6286.378667", + "duration_ts": 301746176, + "index": 1, + "max_bit_rate": "117264", + "nb_frames": "294674", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-24T21:58:18.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Buena Vista Social Club (1999)/Buena.Vista.Social.Club.1999.PROPER.720p.BluRay.x264-RedBlade.mkv": { + "format": { + "bit_rate": "8911920", + "duration": "6321.691000", + "filename": "Buena Vista Social Club (1999)/Buena.Vista.Social.Club.1999.PROPER.720p.BluRay.x264-RedBlade.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7042300908", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-05-16T12:18:59.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "7400310", + "BPS-eng": "7400310", + "DURATION": "01:45:21.691000000", + "DURATION-eng": "01:45:21.691000000", + "NUMBER_OF_BYTES": "5847809870", + "NUMBER_OF_BYTES-eng": "5847809870", + "NUMBER_OF_FRAMES": "151569", + "NUMBER_OF_FRAMES-eng": "151569", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 12:18:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 12:18:59", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:45:21.654000000", + "DURATION-eng": "01:45:21.654000000", + "NUMBER_OF_BYTES": "1192421860", + "NUMBER_OF_BYTES-eng": "1192421860", + "NUMBER_OF_FRAMES": "592655", + "NUMBER_OF_FRAMES-eng": "592655", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 12:18:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 12:18:59", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6321.691000", + "duration_ts": 6321691, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "32", + "BPS-eng": "32", + "DURATION": "01:39:34.385000000", + "DURATION-eng": "01:39:34.385000000", + "NUMBER_OF_BYTES": "24123", + "NUMBER_OF_BYTES-eng": "24123", + "NUMBER_OF_FRAMES": "687", + "NUMBER_OF_FRAMES-eng": "687", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 12:18:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 12:18:59", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6321.691000", + "duration_ts": 6321691, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "48", + "BPS-eng": "48", + "DURATION": "01:44:01.735000000", + "DURATION-eng": "01:44:01.735000000", + "NUMBER_OF_BYTES": "37986", + "NUMBER_OF_BYTES-eng": "37986", + "NUMBER_OF_FRAMES": "998", + "NUMBER_OF_FRAMES-eng": "998", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 12:18:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 12:18:59", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6321.691000", + "duration_ts": 6321691, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "45", + "BPS-eng": "45", + "DURATION": "01:43:49.682000000", + "DURATION-eng": "01:43:49.682000000", + "NUMBER_OF_BYTES": "35663", + "NUMBER_OF_BYTES-eng": "35663", + "NUMBER_OF_FRAMES": "926", + "NUMBER_OF_FRAMES-eng": "926", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v10.0.0 ('To Drown In You') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-05-16 12:18:59", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-05-16 12:18:59", + "language": "eng", + "title": "English Stripped" + }, + "time_base": "1/1000" + } + ] + }, + "The Last Emperor (1987)/The.Last.Emperor.1987.720p.BRRiP.x264.AAC.mkv-Zen_Bud.mkv": { + "format": { + "bit_rate": "2151615", + "duration": "9785.834000", + "filename": "The Last Emperor (1987)/The.Last.Emperor.1987.720p.BRRiP.x264.AAC.mkv-Zen_Bud.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2631919147", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-09-06T16:18:38.000000Z", + "encoder": "libebml v1.2.1 + libmatroska v1.1.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 636, + "coded_width": 1280, + "display_aspect_ratio": "320:159", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 636, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "9785.834000", + "duration_ts": 9785834, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "swe" + }, + "time_base": "1/1000" + } + ] + }, + "Fantastic Beasts The Crimes Of Grindelwald (2018)/48ef0b99b9b64f0ca0941b183abb7bd9.mkv": { + "format": { + "bit_rate": "9989597", + "duration": "8459.488000", + "filename": "Fantastic Beasts The Crimes Of Grindelwald (2018)/48ef0b99b9b64f0ca0941b183abb7bd9.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "10563359494", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-03-22T23:59:15.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "9347697", + "BPS-eng": "9347697", + "DURATION": "02:20:59.451000000", + "DURATION-eng": "02:20:59.451000000", + "NUMBER_OF_BYTES": "9884548355", + "NUMBER_OF_BYTES-eng": "9884548355", + "NUMBER_OF_FRAMES": "202824", + "NUMBER_OF_FRAMES-eng": "202824", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-03-22 23:59:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-22 23:59:15" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "640000", + "BPS-eng": "640000", + "DURATION": "02:20:59.488000000", + "DURATION-eng": "02:20:59.488000000", + "NUMBER_OF_BYTES": "676759040", + "NUMBER_OF_BYTES-eng": "676759040", + "NUMBER_OF_FRAMES": "264359", + "NUMBER_OF_FRAMES-eng": "264359", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.0.1 ('Obstacles') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-03-22 23:59:15", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-03-22 23:59:15", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Bourne Supremacy (2004)/The.Bourne.Supremacy.2004.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "9422546", + "duration": "6511.520000", + "filename": "The Bourne Supremacy (2004)/The.Bourne.Supremacy.2004.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 5, + "probe_score": 100, + "size": "7669387524", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-11-05T10:26:56.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "@7449Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS@1536Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur", + "title": "AC3@448Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6511.520000", + "duration_ts": 6511520, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6511.520000", + "duration_ts": 6511520, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "tur" + }, + "time_base": "1/1000" + } + ] + }, + "Danny The Dog/Danny.The.Dog[2005]DVDrip[ENG]-MissRipZ.avi": { + "format": { + "bit_rate": "995590", + "duration": "5898.280000", + "filename": "Danny The Dog/Danny.The.Dog[2005]DVDrip[ENG]-MissRipZ.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734033920", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "860280", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5898.280000", + "duration_ts": 147457, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "147457", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "245762", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Next Friday (2000)/Next Friday[2000]DvDrip[Eng]-BugZ.avi": { + "format": { + "bit_rate": "1040455", + "duration": "5643.800000", + "filename": "Next Friday (2000)/Next Friday[2000]DvDrip[Eng]-BugZ.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734015488", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "915621", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 320, + "coded_width": 608, + "display_aspect_ratio": "19:10", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5643.800000", + "duration_ts": 141095, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "141095", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "111920", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5643.792000", + "duration_ts": 235158, + "index": 1, + "nb_frames": "235158", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Secret World Of Arrietty (2010)/The Secret World of Arrietty.mkv": { + "format": { + "bit_rate": "3040835", + "duration": "5668.992000", + "filename": "The Secret World Of Arrietty (2010)/The Secret World of Arrietty.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 17, + "probe_score": 100, + "size": "2154808755", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-06-21T01:41:21.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0", + "title": "Tales_from_Earthsea_(2006)_[1080p,BluRay,flac,dts,x264]_-_THORA" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 50, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 5668992, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 4, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Cooper Md BT Medium.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "DFGKyks4-Arrietty.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "DFPGothUW5-Arrietty.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Fontin_Sans_B_45b.otf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Fontin-Regular.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "FOT-MatisseMinoriProB-En.otf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "LTe53507.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "LTSeiZon.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Memo-Condensed Italic.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Memo-Condensed Normal.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 15, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "PPETRIAL.otf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5668.992000", + "duration_ts": 510209280, + "index": 16, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "Aji_Hand.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Sunshine (2007)/Sunshine.2007.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1937328", + "duration": "6448.483333", + "filename": "Sunshine (2007)/Sunshine.2007.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1561603428", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-01-10T14:27:16.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1838937", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 806, + "coded_width": 1920, + "display_aspect_ratio": "960:403", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6448.483708", + "duration_ts": 619054436, + "has_b_frames": 2, + "height": 806, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "154609", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2013-01-10T14:27:16.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "95985", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6335.189333", + "duration_ts": 304089088, + "index": 1, + "max_bit_rate": "157904", + "nb_frames": "296962", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-01-10T14:27:55.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Glengarry Glen Ross/Glengarry Glen Ross.avi": { + "format": { + "bit_rate": "975564", + "duration": "6022.397397", + "filename": "Glengarry Glen Ross/Glengarry Glen Ross.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734404608", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "837547", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 224, + "coded_width": 512, + "display_aspect_ratio": "16:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6022.397397", + "duration_ts": 144393, + "has_b_frames": 0, + "height": 224, + "index": 0, + "level": -99, + "nb_frames": "144393", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 512 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "125304", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6022.320000", + "duration_ts": 250930, + "index": 1, + "nb_frames": "250930", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Hurt Locker (2008)/circle-thl.720p.mkv": { + "format": { + "bit_rate": "8699364", + "duration": "7845.856000", + "filename": "The Hurt Locker (2008)/circle-thl.720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "8531745349", + "start_time": "0.000000", + "tags": { + "creation_time": "2009-01-22T16:54:26.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "320:173", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "172:173", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000" + } + ] + }, + "Bruce Almighty/Bruce Almighty.m4v": { + "format": { + "bit_rate": "1828873", + "duration": "6067.611533", + "filename": "Bruce Almighty/Bruce Almighty.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1387111895", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-24T00:43:27.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1139862763/47532366", + "bit_rate": "1211062", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "23766183/1139862763", + "codec_type": "video", + "coded_height": 464, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "215:116", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6067.611533", + "duration_ts": 546085038, + "has_b_frames": 1, + "height": 464, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "145506", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "30000/1001", + "refs": 1, + "sample_aspect_ratio": "43:36", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-24T00:43:27.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "164604", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6067.584000", + "duration_ts": 291244032, + "index": 1, + "max_bit_rate": "272904", + "nb_frames": "284418", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-24T00:43:27.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "6067.584000", + "duration_ts": 291244032, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "189612", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-24T00:43:27.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Titan A.E/Titan A.E.avi": { + "format": { + "bit_rate": "2071691", + "duration": "5696.763430", + "filename": "Titan A.E/Titan A.E.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1475241984", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/100", + "bit_rate": "1616630", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "100/2997", + "codec_type": "video", + "coded_height": 352, + "coded_width": 640, + "display_aspect_ratio": "20:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5696.763430", + "duration_ts": 170732, + "has_b_frames": 0, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "170732", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/100", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "100/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "318787840", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Hot Tub Time Machine 2 (2015)/56dc2dcfdd2b41aea0fd3a4c27b6ab5e.mkv": { + "format": { + "bit_rate": "3009023", + "duration": "5955.200000", + "filename": "Hot Tub Time Machine 2 (2015)/56dc2dcfdd2b41aea0fd3a4c27b6ab5e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "2239916792", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.82.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "DURATION": "01:39:15.162000000" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:39:15.200000000" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5955.200000", + "duration_ts": 5955200, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "01:34:53.026000000", + "ENCODER": "Lavc57.106.101 ssa" + }, + "time_base": "1/1000" + } + ] + }, + "Grandmas Boy/Grandmas Boy.avi": { + "format": { + "bit_rate": "1031988", + "duration": "5691.107774", + "filename": "Grandmas Boy/Grandmas Boy.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734144512", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "873997", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 272, + "coded_width": 656, + "display_aspect_ratio": "41:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5691.107774", + "duration_ts": 136450, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "136450", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "145232", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5691.096000", + "duration_ts": 237129, + "index": 1, + "nb_frames": "237129", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Star Trek 4 - The Voyage Home/Star Trek 04 Voyage Home 1986 1280x544.mp4": { + "format": { + "bit_rate": "2288341", + "duration": "7131.178667", + "filename": "Star Trek 4 - The Voyage Home/Star Trek 04 Voyage Home 1986 1280x544.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2039821170", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-06-18T02:12:39.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "2141461835/89316804", + "bit_rate": "2028377", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "44658402/2141461835", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7131.082289", + "duration_ts": 641797406, + "has_b_frames": 1, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "nb_frames": "170975", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-18T02:12:39.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "255457", + "bits_per_sample": 0, + "channel_layout": "5.1", + "channels": 6, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7131.178667", + "duration_ts": 342296576, + "index": 1, + "max_bit_rate": "341080", + "nb_frames": "334274", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-06-18T02:12:39.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Avengers Age Of Ultron (2015)/Avengers.Age.of.Ultron.2015.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "2081064", + "duration": "8478.826667", + "filename": "Avengers Age Of Ultron (2015)/Avengers.Age.of.Ultron.2015.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2205622818", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-09-09T11:58:55.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1983309", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8478.720250", + "duration_ts": 203489286, + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "203286", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-09-09T11:58:55.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93755", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8478.826667", + "duration_ts": 406983680, + "index": 1, + "max_bit_rate": "104776", + "nb_frames": "397445", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-09-09T11:59:08.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "X-Men Days Of Future Past (2014)/X-Men.Days.of.Future.Past.2014.BluRay.1080p.DTS.x264-PRoDJi.mkv": { + "format": { + "bit_rate": "8705982", + "duration": "7895.360000", + "filename": "X-Men Days Of Future Past (2014)/X-Men.Days.of.Future.Past.2014.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "8592107866", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-10-04T21:24:37.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "6746390", + "BPS-eng": "6746390", + "DURATION": "02:11:35.304000000", + "DURATION-eng": "02:11:35.304000000", + "NUMBER_OF_BYTES": "6658100514", + "NUMBER_OF_BYTES-eng": "6658100514", + "NUMBER_OF_FRAMES": "189298", + "NUMBER_OF_FRAMES-eng": "189298", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2014-10-04 21:24:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-10-04 21:24:37", + "language": "eng", + "title": "@6752Kbps High Profiles @L4.1" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1509000", + "BPS-eng": "1509000", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "1489262280", + "NUMBER_OF_BYTES-eng": "1489262280", + "NUMBER_OF_FRAMES": "740190", + "NUMBER_OF_FRAMES-eng": "740190", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2014-10-04 21:24:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-10-04 21:24:37", + "language": "eng", + "title": "DTS@1536Kbps 6 chnls" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "448000", + "BPS-eng": "448000", + "DURATION": "02:11:35.360000000", + "DURATION-eng": "02:11:35.360000000", + "NUMBER_OF_BYTES": "442140160", + "NUMBER_OF_BYTES-eng": "442140160", + "NUMBER_OF_FRAMES": "246730", + "NUMBER_OF_FRAMES-eng": "246730", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v7.2.0 ('On Every Street') 64bit built on Sep 13 2014 15:52:10", + "_STATISTICS_WRITING_DATE_UTC": "2014-10-04 21:24:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2014-10-04 21:24:37", + "language": "tur", + "title": "AC3@448Kbps 6 chnls" + }, + "time_base": "1/1000" + } + ] + }, + "Dark Phoenix (2019)/66046b06d37249108eb98a15663e6f4e.mkv": { + "format": { + "bit_rate": "10983503", + "duration": "6836.416000", + "filename": "Dark Phoenix (2019)/66046b06d37249108eb98a15663e6f4e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "9385974896", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-08-29T15:03:44.000000Z", + "encoder": "libebml v1.3.9 + libmatroska v1.5.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "9472070", + "DURATION-eng": "01:53:56.413000000", + "NUMBER_OF_BYTES-eng": "8094373141", + "NUMBER_OF_FRAMES-eng": "163910", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-29 15:03:44" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "1509000", + "DURATION-eng": "01:53:56.416000000", + "NUMBER_OF_BYTES-eng": "1289518968", + "NUMBER_OF_FRAMES-eng": "640914", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-29 15:03:44", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6836.416000", + "duration_ts": 6836416, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "0", + "DURATION-eng": "00:31:20.670000000", + "NUMBER_OF_BYTES-eng": "168", + "NUMBER_OF_FRAMES-eng": "4", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v36.0.0 ('Is That Jazz?') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-08-29 15:03:44", + "language": "eng", + "title": "English Forced" + }, + "time_base": "1/1000" + } + ] + }, + "The Shining (1980)/1fd54f407b8f4adc9cb9fdaae499a39b.mkv": { + "format": { + "bit_rate": "4416160", + "duration": "8626.144000", + "filename": "The Shining (1980)/1fd54f407b8f4adc9cb9fdaae499a39b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "4761804205", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf58.20.100", + "creation_time": "2019-04-24T09:01:34.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "DURATION": "02:23:46.039000000" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:23:46.144000000", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8626.144000", + "duration_ts": 8626144, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:17:41.990000000", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8626.144000", + "duration_ts": 8626144, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:21:13.052000000", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8626.144000", + "duration_ts": 8626144, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:21:13.177000000", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8626.144000", + "duration_ts": 8626144, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "DURATION": "02:19:47.675000000", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Pursuit Of Happyness/The Pursuit Of Happyness.avi": { + "format": { + "bit_rate": "834777", + "duration": "7045.920921", + "filename": "The Pursuit Of Happyness/The Pursuit Of Happyness.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735221760", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "713478", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 242, + "coded_width": 600, + "display_aspect_ratio": "300:121", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7045.920921", + "duration_ts": 168933, + "has_b_frames": 1, + "height": 242, + "index": 0, + "level": 5, + "nb_frames": "168933", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "112000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "293555", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Beerfest/Beerfest.UNRATED.DVDRip.XviD.CD2-DiAMOND.[www.torrentfive.com].avi": { + "format": { + "bit_rate": "1570240", + "duration": "3738.443042", + "filename": "Beerfest/Beerfest.UNRATED.DVDRip.XviD.CD2-DiAMOND.[www.torrentfive.com].avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733782016", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1179490", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 656, + "display_aspect_ratio": "41:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3738.443042", + "duration_ts": 89633, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "89633", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 656 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "179443831", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Whiskey Tango Foxtrot (2016)/Whiskey.Tango.Foxtrot.2016.BDRip.x264-DRONES.mkv": { + "format": { + "bit_rate": "1002588", + "duration": "6708.338000", + "filename": "Whiskey Tango Foxtrot (2016)/Whiskey.Tango.Foxtrot.2016.BDRip.x264-DRONES.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "840713069", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-06-14T22:09:37.000000Z", + "encoder": "libebml v1.3.1 + libmatroska v1.4.2" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 406, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "360:203", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 406, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "889384", + "BPS-eng": "889384", + "DURATION": "01:51:48.338000000", + "DURATION-eng": "01:51:48.338000000", + "NUMBER_OF_BYTES": "745786492", + "NUMBER_OF_BYTES-eng": "745786492", + "NUMBER_OF_FRAMES": "160839", + "NUMBER_OF_FRAMES-eng": "160839", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-06-14 22:09:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-06-14 22:09:37", + "language": "eng", + "title": "X264" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "111021", + "BPS-eng": "111021", + "DURATION": "01:51:47.584000000", + "DURATION-eng": "01:51:47.584000000", + "NUMBER_OF_BYTES": "93085622", + "NUMBER_OF_BYTES-eng": "93085622", + "NUMBER_OF_FRAMES": "314418", + "NUMBER_OF_FRAMES-eng": "314418", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-06-14 22:09:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-06-14 22:09:37", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 1, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6708.338000", + "duration_ts": 6708338, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "01:22:16.182000000", + "DURATION-eng": "01:22:16.182000000", + "NUMBER_OF_BYTES": "458", + "NUMBER_OF_BYTES-eng": "458", + "NUMBER_OF_FRAMES": "21", + "NUMBER_OF_FRAMES-eng": "21", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.3.0 ('Over the Horizon') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2016-06-14 22:09:37", + "_STATISTICS_WRITING_DATE_UTC-eng": "2016-06-14 22:09:37", + "language": "eng", + "title": "English-Forced" + }, + "time_base": "1/1000" + } + ] + }, + "Fight Club/Fight Club.m4v": { + "format": { + "bit_rate": "1334342", + "duration": "8350.368000", + "filename": "Fight Club/Fight Club.m4v", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "1392781689", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2010-04-22T07:16:20.000000Z", + "encoder": "HandBrake 0.9.4 2009112300", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "520182937/21696992", + "bit_rate": "715955", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "10848496/520182937", + "codec_type": "video", + "coded_height": 352, + "coded_width": 720, + "color_primaries": "smpte170m", + "color_range": "tv", + "color_space": "smpte170m", + "color_transfer": "bt709", + "display_aspect_ratio": "835:352", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8350.320811", + "duration_ts": 751528873, + "has_b_frames": 1, + "height": 352, + "index": 0, + "is_avc": "true", + "level": 30, + "nal_length_size": "4", + "nb_frames": "200198", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "60000/1001", + "refs": 1, + "sample_aspect_ratio": "167:144", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T07:16:20.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "165177", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8350.357333", + "duration_ts": 400817152, + "index": 1, + "max_bit_rate": "263000", + "nb_frames": "391423", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T07:16:20.000000Z", + "language": "und" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x332d6361", + "codec_tag_string": "ac-3", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "duration": "8350.368000", + "duration_ts": 400817664, + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "260949", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "side_data_list": [ + { + "side_data_size": 4, + "side_data_type": "Audio Service Type" + } + ], + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2010-04-22T07:16:20.000000Z", + "language": "und" + }, + "time_base": "1/48000" + } + ] + }, + "Tinker Tailor Soldier Spy (2011)/inf-ttss720p.mkv": { + "format": { + "bit_rate": "7368543", + "duration": "7642.678000", + "filename": "Tinker Tailor Soldier Spy (2011)/inf-ttss720p.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "7039425557", + "start_time": "0.000000", + "tags": { + "creation_time": "2012-01-12T23:29:31.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Wedding Singer/The Wedding Singer.avi": { + "format": { + "bit_rate": "986924", + "duration": "5798.472000", + "filename": "The Wedding Singer/The Wedding Singer.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "715331584", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2439/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "843860", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 640, + "display_aspect_ratio": "40:21", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5798.465132", + "duration_ts": 139024, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 3, + "nb_frames": "139024", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "130240", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5798.472000", + "duration_ts": 241603, + "index": 1, + "nb_frames": "241603", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Batman Begins (2005)/Batman.Begins.2005.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1641319", + "duration": "8403.200000", + "filename": "Batman Begins (2005)/Batman.Begins.2005.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1724042076", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2011-12-25T11:05:57.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1574103", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1920, + "display_aspect_ratio": "12:5", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8403.019625", + "duration_ts": 806689884, + "has_b_frames": 2, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "201471", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2011-12-25T11:05:57.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "64000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8403.200000", + "duration_ts": 201676800, + "index": 1, + "max_bit_rate": "74960", + "nb_frames": "196950", + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-12-25T11:09:43.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/24000" + } + ] + }, + "The Death Of Stalin (2017)/The Death of Stalin 2017 720p WEB-DL MkvCage.mkv": { + "format": { + "bit_rate": "1115626", + "duration": "6409.503000", + "filename": "The Death Of Stalin (2017)/The Death of Stalin 2017 720p WEB-DL MkvCage.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "893826775", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-02-19T11:21:54.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "The.Death.of.Stalin.2017.720p.WEB-DL.850MB.MkvCage.com" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 0, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 31, + "start_time": "0.031000", + "tags": { + "BPS": "63994", + "BPS-eng": "63994", + "DURATION": "01:46:49.472000000", + "DURATION-eng": "01:46:49.472000000", + "NUMBER_OF_BYTES": "51271634", + "NUMBER_OF_BYTES-eng": "51271634", + "NUMBER_OF_FRAMES": "150222", + "NUMBER_OF_FRAMES-eng": "150222", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-19 11:21:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-19 11:21:54", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "24/1", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48", + "codec_type": "video", + "coded_height": 690, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "128:69", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 690, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1049668", + "BPS-eng": "1049668", + "DURATION": "01:46:49.459000000", + "DURATION-eng": "01:46:49.459000000", + "NUMBER_OF_BYTES": "840975826", + "NUMBER_OF_BYTES-eng": "840975826", + "NUMBER_OF_FRAMES": "153827", + "NUMBER_OF_FRAMES-eng": "153827", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-19 11:21:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-19 11:21:54" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6409.503000", + "duration_ts": 6409503, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "83", + "BPS-eng": "83", + "DURATION": "01:38:42.908000000", + "DURATION-eng": "01:38:42.908000000", + "NUMBER_OF_BYTES": "62068", + "NUMBER_OF_BYTES-eng": "62068", + "NUMBER_OF_FRAMES": "1709", + "NUMBER_OF_FRAMES-eng": "1709", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v9.7.1 ('Pandemonium') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-02-19 11:21:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-02-19 11:21:54", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Labyrinth (1986)/ae881cb0972a4f03b7848aecd490c0bb.mkv": { + "format": { + "bit_rate": "12381091", + "duration": "6063.072000", + "filename": "Labyrinth (1986)/ae881cb0972a4f03b7848aecd490c0bb.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "9383431168", + "start_time": "0.000000", + "tags": { + "creation_time": "2016-09-18T05:34:31.000000Z", + "encoder": "libebml v1.3.0 + libmatroska v1.4.1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 808, + "coded_width": 1920, + "display_aspect_ratio": "240:101", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 808, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6063.072000", + "duration_ts": 6063072, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6063.072000", + "duration_ts": 6063072, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + } + ] + }, + "The Iron Giant (1999)/The Iron Giant 1999 720p WEBRip x264-PLAYNOW.mp4": { + "format": { + "bit_rate": "1066449", + "duration": "5192.859700", + "filename": "The Iron Giant (1999)/The Iron Giant 1999 720p WEBRip x264-PLAYNOW.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "692240332", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isomavc1", + "creation_time": "2013-02-11T06:07:21.000000Z", + "encoder": "HandBrake 5165svn 2013010701", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "1245040000/51928597", + "bit_rate": "909479", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "35863530/1719727933", + "codec_type": "video", + "coded_height": 532, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5192.859700", + "duration_ts": 467357373, + "has_b_frames": 2, + "height": 532, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "124504", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-11T06:07:21.000000Z", + "encoder": "JVT/AVC Coding", + "language": "und" + }, + "time_base": "1/90000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "151540", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5192.746667", + "duration_ts": 249251840, + "index": 1, + "max_bit_rate": "167392", + "nb_frames": "243410", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-11T06:07:21.000000Z", + "language": "eng" + }, + "time_base": "1/48000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1", + "codec_long_name": "binary data", + "codec_name": "bin_data", + "codec_tag": "0x74786574", + "codec_tag_string": "text", + "codec_type": "data", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5192.859700", + "duration_ts": 467357373, + "index": 2, + "nb_frames": "34", + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-11T06:07:21.000000Z", + "language": "und" + }, + "time_base": "1/90000" + } + ] + }, + "Heathers (1989)/Heathers.1989.BluRay.480p.H264.mp4": { + "format": { + "bit_rate": "972733", + "duration": "6044.200000", + "filename": "Heathers (1989)/Heathers.1989.BluRay.480p.H264.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734924836", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1M4A mp42", + "creation_time": "2011-01-30T21:49:47.000000Z", + "major_brand": "M4A ", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "0/0", + "bit_rate": "64545", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6044.200635", + "duration_ts": 266549248, + "index": 0, + "max_bit_rate": "124784", + "nb_frames": "260302", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2011-01-30T21:49:47.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "und" + }, + "time_base": "1/44100" + }, + { + "avg_frame_rate": "24000/1001", + "bit_rate": "904994", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 400, + "coded_width": 704, + "display_aspect_ratio": "44:25", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6044.121417", + "duration_ts": 145058914, + "has_b_frames": 1, + "height": 400, + "index": 1, + "is_avc": "true", + "level": 41, + "nal_length_size": "3", + "nb_frames": "144914", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 1001, + "start_time": "0.041708", + "tags": { + "creation_time": "2011-01-30T21:49:50.000000Z", + "handler_name": "GPAC ISO Video Handler", + "language": "und" + }, + "time_base": "1/24000", + "width": 704 + } + ] + }, + "A Day Without a Mexican/alliance-day.wo.mexican-xvid.avi": { + "format": { + "bit_rate": "1023116", + "duration": "5738.613614", + "filename": "A Day Without a Mexican/alliance-day.wo.mexican-xvid.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733908992", + "start_time": "0.000000", + "tags": { + "encoder": "Nandub v1.0rc2" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "881188", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 304, + "coded_width": 576, + "display_aspect_ratio": "36:19", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5738.613614", + "duration_ts": 137589, + "has_b_frames": 1, + "height": 304, + "index": 0, + "level": -99, + "nb_frames": "137589", + "pix_fmt": "yuv420p", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 576 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "129216", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5738.544000", + "duration_ts": 239106, + "index": 1, + "nb_frames": "239106", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "The Rescuers (1977)/muxhd-rescuers720.mkv": { + "format": { + "bit_rate": "5738291", + "duration": "4633.802000", + "filename": "The Rescuers (1977)/muxhd-rescuers720.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "3323763170", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf57.56.100" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 534, + "coded_width": 1280, + "display_aspect_ratio": "1920:1157", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 534, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "9:13", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "5070563", + "BPS-eng": "5070563", + "DURATION": "01:17:13.796000000", + "DURATION-eng": "01:17:13.796000000", + "ENCODER": "Lavc57.64.101 libx264", + "NUMBER_OF_BYTES": "2936994824", + "NUMBER_OF_BYTES-eng": "2936994824", + "NUMBER_OF_FRAMES": "111100", + "NUMBER_OF_FRAMES-eng": "111100", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:17:13.801000000", + "DURATION-eng": "01:17:13.803000000", + "NUMBER_OF_BYTES": "874051028", + "NUMBER_OF_BYTES-eng": "874051028", + "NUMBER_OF_FRAMES": "434419", + "NUMBER_OF_FRAMES-eng": "434419", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1508999", + "BPS-eng": "1508999", + "DURATION": "01:17:13.802000000", + "DURATION-eng": "01:17:13.803000000", + "NUMBER_OF_BYTES": "874051028", + "NUMBER_OF_BYTES-eng": "874051028", + "NUMBER_OF_FRAMES": "434419", + "NUMBER_OF_FRAMES-eng": "434419", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4633.802000", + "duration_ts": 4633802, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "0", + "BPS-eng": "0", + "DURATION": "00:20:02.117000000", + "DURATION-eng": "00:18:55.258000000", + "NUMBER_OF_BYTES": "136", + "NUMBER_OF_BYTES-eng": "136", + "NUMBER_OF_FRAMES": "6", + "NUMBER_OF_FRAMES-eng": "6", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "fre", + "title": "French Forced" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4633.802000", + "duration_ts": 4633802, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "43", + "BPS-eng": "43", + "DURATION": "01:17:04.119000000", + "DURATION-eng": "01:16:09.272000000", + "NUMBER_OF_BYTES": "24568", + "NUMBER_OF_BYTES-eng": "24568", + "NUMBER_OF_FRAMES": "688", + "NUMBER_OF_FRAMES-eng": "688", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4633.802000", + "duration_ts": 4633802, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "42", + "BPS-eng": "42", + "DURATION": "01:17:04.452000000", + "DURATION-eng": "01:16:09.564000000", + "NUMBER_OF_BYTES": "24550", + "NUMBER_OF_BYTES-eng": "24550", + "NUMBER_OF_FRAMES": "795", + "NUMBER_OF_FRAMES-eng": "795", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4633.802000", + "duration_ts": 4633802, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "47", + "BPS-eng": "47", + "DURATION": "01:17:03.118000000", + "DURATION-eng": "01:16:42.639000000", + "NUMBER_OF_BYTES": "27496", + "NUMBER_OF_BYTES-eng": "27496", + "NUMBER_OF_FRAMES": "970", + "NUMBER_OF_FRAMES-eng": "970", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.2 ('Crosses') 32bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-04-05 18:31:51", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-04-05 18:31:51", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Underworld/Underworld[2003]DvDrip[eng]-Zeus_Dias.avi": { + "format": { + "bit_rate": "764009", + "duration": "7686.040000", + "filename": "Underworld/Underworld[2003]DvDrip[eng]-Zeus_Dias.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734025728", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "628705", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7686.040000", + "duration_ts": 192151, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "192151", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "320244", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Persepolis/Persepolis [2007-DVDRip-H.264]-NewArtRiot.mp4": { + "format": { + "bit_rate": "1129296", + "duration": "5487.160000", + "filename": "Persepolis/Persepolis [2007-DVDRip-H.264]-NewArtRiot.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "774578912", + "start_time": "0.000000", + "tags": { + "compatible_brands": "mp42isom", + "creation_time": "2008-01-08T03:49:26.000000Z", + "major_brand": "mp42", + "minor_version": "0" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "999058", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1/50", + "codec_type": "video", + "coded_height": 384, + "coded_width": 720, + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5487.160000", + "duration_ts": 241983756, + "has_b_frames": 0, + "height": 384, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "137179", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2008-01-08T03:49:26.000000Z", + "encoder": "AVC Coding", + "language": "eng" + }, + "time_base": "1/44100", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "127993", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/44100", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5487.061043", + "duration_ts": 241979392, + "index": 1, + "max_bit_rate": "222672", + "nb_frames": "236308", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "44100", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2008-01-08T03:49:26.000000Z", + "language": "fre" + }, + "time_base": "1/44100" + } + ] + }, + "Ghost Busters (1984)/gb-vrs.avi": { + "format": { + "bit_rate": "930705", + "duration": "6307.968333", + "filename": "Ghost Busters (1984)/gb-vrs.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733857792", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "475584", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 272, + "coded_width": 640, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6307.968333", + "duration_ts": 151240, + "has_b_frames": 1, + "height": 272, + "index": 0, + "level": 5, + "nb_frames": "151240", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 640 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "353246208", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/56000" + } + ] + }, + "Back To The Future Part Iii (1990)/39a1fbbbf8db4b1bb615ebbcf5b2febe.mkv": { + "format": { + "bit_rate": "11909878", + "duration": "7097.643000", + "filename": "Back To The Future Part Iii (1990)/39a1fbbbf8db4b1bb615ebbcf5b2febe.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 10, + "probe_score": 100, + "size": "10566507912", + "start_time": "0.000000", + "tags": { + "ENCODER": "Lavf54.63.104", + "creation_time": "2013-11-12T16:49:52.000000Z" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "768000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English audio" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "Forced French subtitles" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles (commentary 1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre", + "title": "French subtitles (commentary 2)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English subtitles (commentary 1)" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7097.643000", + "duration_ts": 7097643, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "English subtitles (commentary 2)" + }, + "time_base": "1/1000" + } + ] + }, + "Interstellar (2014)/Interstellar.2014.2014.1080p.BluRay.x264.YIFY.mp4": { + "format": { + "bit_rate": "1917742", + "duration": "10144.000000", + "filename": "Interstellar (2014)/Interstellar.2014.2014.1080p.BluRay.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2431697820", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2015-03-15T13:31:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1819862", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10143.925458", + "duration_ts": 243454211, + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "nb_frames": "243211", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 2002, + "start_time": "0.083417", + "tags": { + "creation_time": "2015-03-15T13:31:29.000000Z", + "handler_name": "video.264#trackID=1:fps=23.976 - Imported with GPAC 0.5.0-rev", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "93779", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10144.000000", + "duration_ts": 486912000, + "index": 1, + "max_bit_rate": "107704", + "nb_frames": "475500", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2015-03-15T13:31:43.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "X Men First Class (2011)/4105f6cdcf2d42c3816835d268abcdcd.mkv": { + "format": { + "bit_rate": "6202193", + "duration": "7902.937000", + "filename": "X Men First Class (2011)/4105f6cdcf2d42c3816835d268abcdcd.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "6126943141", + "start_time": "0.000000", + "tags": { + "CREATION_TIME": "2019-04-25T14:43:19Z", + "ENCODER": "Lavf57.7.2" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 5, + "start_time": "0.005000", + "tags": { + "BPS-eng": "5752258", + "DURATION-eng": "02:11:42.937000000", + "NUMBER_OF_BYTES-eng": "5682467484", + "NUMBER_OF_FRAMES-eng": "189481", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:50:22" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "02:11:42.912000000", + "NUMBER_OF_BYTES-eng": "442563072", + "NUMBER_OF_FRAMES-eng": "246966", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:50:22", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7902.937000", + "duration_ts": 7902937, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "48", + "DURATION-eng": "02:10:16.350000000", + "NUMBER_OF_BYTES-eng": "46962", + "NUMBER_OF_FRAMES-eng": "1411", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v33.1.0 ('Primrose') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-04-26 05:50:22", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Cloud Atlas (2012)/Cloud.Atlas.2012.720p.BrRip.x264.YIFY.mp4": { + "format": { + "bit_rate": "998649", + "duration": "10327.316667", + "filename": "Cloud Atlas (2012)/Cloud.Atlas.2012.720p.BrRip.x264.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1289170613", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2012-12-23T16:38:29.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "904508", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10327.317000", + "duration_ts": 991422432, + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "247608", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 8008, + "start_time": "0.083417", + "tags": { + "creation_time": "2012-12-23T16:38:29.000000Z", + "language": "und" + }, + "time_base": "1/96000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10150.805333", + "duration_ts": 487238656, + "index": 1, + "max_bit_rate": "102536", + "nb_frames": "475819", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2012-12-23T16:39:20.000000Z", + "handler_name": "GPAC ISO Audio Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Dumbo (2019)/f68d054f4c314deebcfb4f9d6b6392a9.mkv": { + "format": { + "bit_rate": "6973788", + "duration": "6716.595000", + "filename": "Dumbo (2019)/f68d054f4c314deebcfb4f9d6b6392a9.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "5855014375", + "start_time": "0.083000", + "tags": { + "CREATION_TIME": "2019-06-13T20:03:09Z", + "ENCODER": "Lavf55.12.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Louis C K Hilarious (2010)/f96642a0043d413f916b8fd5ae96632b.mkv": { + "format": { + "bit_rate": "2279130", + "duration": "5017.304000", + "filename": "Louis C K Hilarious (2010)/f96642a0043d413f916b8fd5ae96632b.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "1429386557", + "start_time": "0.000000", + "tags": { + "creation_time": "2017-08-31T21:40:16.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1920, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "Main", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "2148437", + "BPS-eng": "2148437", + "DURATION": "01:23:37.304000000", + "DURATION-eng": "01:23:37.304000000", + "NUMBER_OF_BYTES": "1347420460", + "NUMBER_OF_BYTES-eng": "1347420460", + "NUMBER_OF_FRAMES": "120295", + "NUMBER_OF_FRAMES-eng": "120295", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52B (AC-3, E-AC-3)", + "codec_name": "eac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "128000", + "BPS-eng": "128000", + "DURATION": "01:23:37.120000000", + "DURATION-eng": "01:23:37.120000000", + "NUMBER_OF_BYTES": "80273920", + "NUMBER_OF_BYTES-eng": "80273920", + "NUMBER_OF_FRAMES": "156785", + "NUMBER_OF_FRAMES-eng": "156785", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5017.304000", + "duration_ts": 5017304, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "102", + "BPS-eng": "102", + "DURATION": "01:21:23.462000000", + "DURATION-eng": "01:21:23.462000000", + "NUMBER_OF_BYTES": "62419", + "NUMBER_OF_BYTES-eng": "62419", + "NUMBER_OF_FRAMES": "1550", + "NUMBER_OF_FRAMES-eng": "1550", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5017.304000", + "duration_ts": 5017304, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "94", + "BPS-eng": "94", + "DURATION": "01:21:13.335000000", + "DURATION-eng": "01:21:13.335000000", + "NUMBER_OF_BYTES": "57341", + "NUMBER_OF_BYTES-eng": "57341", + "NUMBER_OF_FRAMES": "1456", + "NUMBER_OF_FRAMES-eng": "1456", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16", + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5017.304000", + "duration_ts": 5017304, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "93", + "BPS-eng": "93", + "DURATION": "01:21:13.035000000", + "DURATION-eng": "01:21:13.035000000", + "NUMBER_OF_BYTES": "56928", + "NUMBER_OF_BYTES-eng": "56928", + "NUMBER_OF_FRAMES": "1425", + "NUMBER_OF_FRAMES-eng": "1425", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16", + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5017.304000", + "duration_ts": 5017304, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "86", + "BPS-eng": "86", + "DURATION": "01:21:13.335000000", + "DURATION-eng": "01:21:13.335000000", + "NUMBER_OF_BYTES": "52715", + "NUMBER_OF_BYTES-eng": "52715", + "NUMBER_OF_FRAMES": "1451", + "NUMBER_OF_FRAMES-eng": "1451", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16", + "language": "chi", + "title": "Simplified" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5017.304000", + "duration_ts": 5017304, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "88", + "BPS-eng": "88", + "DURATION": "01:21:13.335000000", + "DURATION-eng": "01:21:13.335000000", + "NUMBER_OF_BYTES": "53848", + "NUMBER_OF_BYTES-eng": "53848", + "NUMBER_OF_FRAMES": "1455", + "NUMBER_OF_FRAMES-eng": "1455", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v13.0.0 ('The Juggler') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2017-08-31 21:40:16", + "_STATISTICS_WRITING_DATE_UTC-eng": "2017-08-31 21:40:16", + "language": "chi", + "title": "Traditional" + }, + "time_base": "1/1000" + } + ] + }, + "Into the Wild/Into.the.Wild.2007.720p.HDDVD.DTS.x264-ESiR.mkv": { + "format": { + "bit_rate": "7554333", + "duration": "8887.158000", + "filename": "Into the Wild/Into.the.Wild.2007.720p.HDDVD.DTS.x264-ESiR.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 7, + "probe_score": 100, + "size": "8392069087", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-03-19T20:43:52.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Into the Wild (2007)" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8887.158000", + "duration_ts": 8887158, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8887.158000", + "duration_ts": 8887158, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8887.158000", + "duration_ts": 8887158, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8887.158000", + "duration_ts": 8887158, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8887.158000", + "duration_ts": 799844220, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "TCCEB.TTF", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + }, + "Ghost In The Shell Arise Border 2 Ghost Whisper (2013)/Ghost.In.The.Shell.Arise.Border.2.Ghost.Whisper.2013.720p.BluRay.x264-PublicHD.mkv": { + "format": { + "bit_rate": "5571852", + "duration": "3379.392000", + "filename": "Ghost In The Shell Arise Border 2 Ghost Whisper (2013)/Ghost.In.The.Shell.Arise.Border.2.Ghost.Whisper.2013.720p.BluRay.x264-PublicHD.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "2353684091", + "start_time": "0.000000", + "tags": { + "creation_time": "2013-12-05T11:51:26.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "640000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3379.392000", + "duration_ts": 3379392, + "height": 720, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3379.392000", + "duration_ts": 3379392, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3379.392000", + "duration_ts": 3379392, + "height": 720, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "DVD subtitles", + "codec_name": "dvd_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "3379.392000", + "duration_ts": 3379392, + "height": 720, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jpn" + }, + "time_base": "1/1000", + "width": 1280 + } + ] + }, + "45/J-45.DVDRip.XviD.avi": { + "format": { + "bit_rate": "1004546", + "duration": "5844.600000", + "filename": "45/J-45.DVDRip.XviD.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "733896704", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2439/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "858887", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 336, + "coded_width": 624, + "display_aspect_ratio": "13:7", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5844.594595", + "duration_ts": 140130, + "has_b_frames": 1, + "height": 336, + "index": 0, + "level": 3, + "nb_frames": "140130", + "pix_fmt": "yuv420p", + "profile": "Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 624 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "132920", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5844.600000", + "duration_ts": 243525, + "index": 1, + "nb_frames": "243525", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Say Anything (1989)/Say.Anything.1989.1080p.BluRay.DTS-HD.x264-BARC0DE.mkv": { + "format": { + "bit_rate": "12404118", + "duration": "6038.027000", + "filename": "Say Anything (1989)/Say.Anything.1989.1080p.BluRay.DTS-HD.x264-BARC0DE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "9362050240", + "start_time": "0.000000", + "tags": { + "creation_time": "2014-05-12T13:26:48.000000Z", + "encoder": "libebml v1.2.3 + libmatroska v1.3.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1040, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "24:13", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1040, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6038.027000", + "duration_ts": 6038027, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6038.027000", + "duration_ts": 6038027, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6038.027000", + "duration_ts": 6038027, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6038.027000", + "duration_ts": 6038027, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6038.027000", + "duration_ts": 6038027, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "chi" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6038.027000", + "duration_ts": 6038027, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "My Neighbor Totoro (1988)/My.Neighbor.Totoro.1988.720p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "5423961", + "duration": "5185.138000", + "filename": "My Neighbor Totoro (1988)/My.Neighbor.Totoro.1988.720p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "3515498897", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 688, + "coded_width": 1280, + "display_aspect_ratio": "80:43", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 688, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "jap" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5185.138000", + "duration_ts": 5185138, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Death To Smoochy (2002)/Death.To.Smoochy[2002].DVDRIP.Mentality.avi": { + "format": { + "bit_rate": "894472", + "duration": "6567.227333", + "filename": "Death To Smoochy (2002)/Death.To.Smoochy[2002].DVDRIP.Mentality.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734275584", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "771123", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1001/24000", + "codec_type": "video", + "coded_height": 352, + "coded_width": 608, + "display_aspect_ratio": "19:11", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "6567.227333", + "duration_ts": 157456, + "has_b_frames": 1, + "height": 352, + "index": 0, + "level": 5, + "nb_frames": "157456", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1001/24000", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "110648", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6566.928000", + "duration_ts": 273622, + "index": 1, + "nb_frames": "273622", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Iron Sky The Coming Race (2019)/3aabe8e038a24c96b5bf70abf227de87.mkv": { + "format": { + "bit_rate": "4918199", + "duration": "5565.280000", + "filename": "Iron Sky The Coming Race (2019)/3aabe8e038a24c96b5bf70abf227de87.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "3421394910", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-05-05T23:04:54.000000Z", + "encoder": "libebml v1.3.4 + libmatroska v1.4.5", + "title": "CMRG" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 800, + "coded_width": 1916, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "479:200", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 800, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 42, + "start_time": "0.042000", + "tags": { + "BPS": "4532404", + "BPS-eng": "4532404", + "DURATION": "01:32:45.226000000", + "DURATION-eng": "01:32:45.226000000", + "NUMBER_OF_BYTES": "3152982060", + "NUMBER_OF_BYTES-eng": "3152982060", + "NUMBER_OF_FRAMES": "133432", + "NUMBER_OF_FRAMES-eng": "133432", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-05 23:04:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-05 23:04:54", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1916 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "384000", + "BPS-eng": "384000", + "DURATION": "01:32:45.280000000", + "DURATION-eng": "01:32:45.280000000", + "NUMBER_OF_BYTES": "267133440", + "NUMBER_OF_BYTES-eng": "267133440", + "NUMBER_OF_FRAMES": "173915", + "NUMBER_OF_FRAMES-eng": "173915", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v11.0.0 ('Alive') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2019-05-05 23:04:54", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-05-05 23:04:54", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Christopher Robin (2018)/Christopher Robin 2018.720p.BRRip.X264.AC3-EVO.mkv": { + "format": { + "bit_rate": "3640472", + "duration": "6236.000000", + "filename": "Christopher Robin (2018)/Christopher Robin 2018.720p.BRRip.X264.AC3-EVO.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "2837748169", + "start_time": "0.078000", + "tags": { + "creation_time": "2018-10-26T02:07:47.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9", + "title": "EVO" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 83, + "start_time": "0.083000", + "tags": { + "BPS-eng": "3190692", + "DURATION-eng": "01:43:55.980000000", + "NUMBER_OF_BYTES-eng": "2487137210", + "NUMBER_OF_FRAMES-eng": "149514", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-26 02:07:47" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "448000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 78, + "start_time": "0.078000", + "tags": { + "BPS-eng": "448000", + "DURATION-eng": "01:43:56.000000000", + "NUMBER_OF_BYTES-eng": "349216000", + "NUMBER_OF_FRAMES-eng": "194875", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v25.0.0 ('Prog Noir') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-26 02:07:47", + "language": "eng", + "title": "Surround" + }, + "time_base": "1/1000" + } + ] + }, + "Annie (1982)/441b8d96f9fc464e8407312c2ebfea72.mkv": { + "format": { + "bit_rate": "6143528", + "duration": "7643.606000", + "filename": "Annie (1982)/441b8d96f9fc464e8407312c2ebfea72.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "5869839174", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 536, + "coded_width": 1280, + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 536, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "7643.606000", + "duration_ts": 7643606, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Avengers Endgame (2019)/f0ae418031fc42219dd42d6028e7b29e.mkv": { + "format": { + "bit_rate": "4912590", + "duration": "10896.189000", + "filename": "Avengers Endgame (2019)/f0ae418031fc42219dd42d6028e7b29e.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 8, + "probe_score": 100, + "size": "6691064497", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-07-29T13:39:04.000000Z", + "encoder": "libebml v1.3.7 + libmatroska v1.5.0", + "title": "Avengers.Endgame.2019.1080p.WEB-DL.DD5.1.H264-FGT" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "topleft", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "color_transfer": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 1, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 43, + "start_time": "0.043000", + "tags": { + "BPS-eng": "4527380", + "DURATION-eng": "03:01:36.146000000", + "NUMBER_OF_BYTES-eng": "6166374406", + "NUMBER_OF_FRAMES-eng": "261246", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-29 13:39:04", + "language": "eng", + "title": "Avengers.Endgame.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "384000", + "DURATION-eng": "03:01:10.528000000", + "NUMBER_OF_BYTES-eng": "521785344", + "NUMBER_OF_FRAMES-eng": "339704", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-29 13:39:04", + "language": "eng", + "title": "Avengers.Endgame.2019.1080p.WEB-DL.DD5.1.H264-FGT" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10896.189000", + "duration_ts": 10896189, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "50", + "DURATION-eng": "02:47:57.830000000", + "NUMBER_OF_BYTES-eng": "63108", + "NUMBER_OF_FRAMES-eng": "2339", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-29 13:39:04", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10896.189000", + "duration_ts": 10896189, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "52", + "DURATION-eng": "03:00:53.559000000", + "NUMBER_OF_BYTES-eng": "70600", + "NUMBER_OF_FRAMES-eng": "2641", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v34.0.0 ('Sight and Seen') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-07-29 13:39:04", + "language": "eng", + "title": "SDH" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 176, + "coded_width": 120, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10896.189000", + "duration_ts": 980657010, + "has_b_frames": 0, + "height": 176, + "index": 4, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 120 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 120, + "coded_width": 213, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10896.189000", + "duration_ts": 980657010, + "has_b_frames": 0, + "height": 120, + "index": 5, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "small_cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 213 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 882, + "coded_width": 600, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10896.189000", + "duration_ts": 980657010, + "has_b_frames": 0, + "height": 882, + "index": 6, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 600 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "8", + "chroma_location": "center", + "codec_long_name": "Motion JPEG", + "codec_name": "mjpeg", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "video", + "coded_height": 600, + "coded_width": 1067, + "color_range": "pc", + "color_space": "bt470bg", + "display_aspect_ratio": "0:1", + "disposition": { + "attached_pic": 1, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "10896.189000", + "duration_ts": 980657010, + "has_b_frames": 0, + "height": 600, + "index": 7, + "level": -99, + "pix_fmt": "yuvj444p", + "r_frame_rate": "90000/1", + "refs": 1, + "sample_aspect_ratio": "0:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "cover_land.jpg", + "mimetype": "image/jpeg" + }, + "time_base": "1/90000", + "width": 1067 + } + ] + }, + "Boondock Saints (1999)/c03939a05ce84c05b0c68a2ba64d97d3.mkv": { + "format": { + "bit_rate": "14813636", + "duration": "6506.912000", + "filename": "Boondock Saints (1999)/c03939a05ce84c05b0c68a2ba64d97d3.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 6, + "probe_score": 100, + "size": "12048878870", + "start_time": "0.000000", + "tags": { + "creation_time": "2010-07-21T20:03:46.000000Z", + "encoder": "libebml v1.0.0 + libmatroska v1.0.0" + } + }, + "streams": [ + { + "avg_frame_rate": "13978/583", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "583/27956", + "codec_type": "video", + "coded_height": 814, + "coded_width": 1920, + "display_aspect_ratio": "960:407", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 814, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "13978/583", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 2, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Audio Commentary with director Troy Duffy" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 3, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Audio Commentary with actor Bill Connelly" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6506.912000", + "duration_ts": 6506912, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6506.912000", + "duration_ts": 6506912, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + } + ] + }, + "Team America - World Police/Team America - World Police.avi": { + "format": { + "bit_rate": "990998", + "duration": "5898.528000", + "filename": "Team America - World Police/Team America - World Police.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "730679296", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.2 (build 2540/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "852132", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 256, + "coded_width": 608, + "display_aspect_ratio": "19:8", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5898.523524", + "duration_ts": 141423, + "has_b_frames": 1, + "height": 256, + "index": 0, + "level": 5, + "nb_frames": "141423", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "126152", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5898.528000", + "duration_ts": 245772, + "index": 1, + "nb_frames": "245772", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Toy Story 4 (2019)/c99759c1923a49f7b16a77b87cb2d193.mkv": { + "format": { + "bit_rate": "17954996", + "duration": "6003.467000", + "filename": "Toy Story 4 (2019)/c99759c1923a49f7b16a77b87cb2d193.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "13474028683", + "start_time": "0.000000", + "tags": { + "creation_time": "2019-09-26T12:20:31.000000Z", + "encoder": "libebml v1.3.6 + libmatroska v1.4.9" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 804, + "coded_width": 1920, + "color_primaries": "bt709", + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "160:67", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 804, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "13774204", + "DURATION-eng": "01:40:03.456000000", + "NUMBER_OF_BYTES-eng": "10336604164", + "NUMBER_OF_FRAMES-eng": "143939", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-26 12:20:31", + "language": "eng" + }, + "time_base": "1/1000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bits_per_raw_sample": "24", + "bits_per_sample": 0, + "channel_layout": "7.1", + "channels": 8, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS-HD MA", + "r_frame_rate": "0/0", + "sample_fmt": "s32p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "4160244", + "DURATION-eng": "01:40:03.467000000", + "NUMBER_OF_BYTES-eng": "3121986128", + "NUMBER_OF_FRAMES-eng": "562825", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-26 12:20:31" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "HDMV Presentation Graphic Stream subtitles", + "codec_name": "hdmv_pgs_subtitle", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "6003.467000", + "duration_ts": 6003467, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS-eng": "51824", + "DURATION-eng": "01:39:13.280000000", + "NUMBER_OF_BYTES-eng": "38565635", + "NUMBER_OF_FRAMES-eng": "4142", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v29.0.0 ('Like It Or Not') 64-bit", + "_STATISTICS_WRITING_DATE_UTC-eng": "2019-09-26 12:20:31", + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "The Little Mermaid - Ariel'S Beginning (2008)/The.Little.Mermaid-Ariel's.Beginning[2008]DvDrip-aXXo.avi": { + "format": { + "bit_rate": "1264596", + "duration": "4652.777778", + "filename": "The Little Mermaid - Ariel'S Beginning (2008)/The.Little.Mermaid-Ariel's.Beginning[2008]DvDrip-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735485952", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "1095384", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 384, + "coded_width": 704, + "display_aspect_ratio": "11:6", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "4652.777778", + "duration_ts": 111555, + "has_b_frames": 1, + "height": 384, + "index": 0, + "level": 5, + "nb_frames": "111555", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 704 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "193751", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Unbearable Lightness Of Being/Unbearable.Lightness.Of.Being Part 2.avi": { + "format": { + "bit_rate": "1797056", + "duration": "3268.018041", + "filename": "Unbearable Lightness Of Being/Unbearable.Lightness.Of.Being Part 2.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734101504", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2178/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "12570329/524288", + "bit_rate": "1598348", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "524288/12570329", + "codec_type": "video", + "coded_height": 416, + "coded_width": 720, + "display_aspect_ratio": "45:26", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "3268.018041", + "duration_ts": 78354, + "has_b_frames": 1, + "height": 416, + "index": 0, + "level": 5, + "nb_frames": "78354", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "12570329/524288", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "524288/12570329", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "192000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "78432433", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/24000" + } + ] + }, + "Bill Nye Science Guy (2017)/bill.nye.science.guy.2017.bdrip.x264-bipolar.mkv": { + "format": { + "bit_rate": "1151835", + "duration": "5810.680000", + "filename": "Bill Nye Science Guy (2017)/bill.nye.science.guy.2017.bdrip.x264-bipolar.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "836618614", + "start_time": "0.000000", + "tags": { + "creation_time": "2018-10-28T15:49:58.000000Z", + "encoder": "libebml v1.3.3 + libmatroska v1.4.4" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 406, + "coded_width": 720, + "color_range": "tv", + "color_space": "bt709", + "display_aspect_ratio": "360:203", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 406, + "index": 0, + "is_avc": "true", + "level": 31, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "1013989", + "BPS-eng": "1013989", + "DURATION": "01:36:50.680000000", + "DURATION-eng": "01:36:50.680000000", + "NUMBER_OF_BYTES": "736496200", + "NUMBER_OF_BYTES-eng": "736496200", + "NUMBER_OF_FRAMES": "139317", + "NUMBER_OF_FRAMES-eng": "139317", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-28 15:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-28 15:49:58", + "language": "eng" + }, + "time_base": "1/1000", + "width": 720 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 1009, + "start_time": "1.009000", + "tags": { + "BPS": "135362", + "BPS-eng": "135362", + "DURATION": "01:36:48.640000000", + "DURATION-eng": "01:36:48.640000000", + "NUMBER_OF_BYTES": "98284215", + "NUMBER_OF_BYTES-eng": "98284215", + "NUMBER_OF_FRAMES": "272280", + "NUMBER_OF_FRAMES-eng": "272280", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-28 15:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-28 15:49:58", + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5810.680000", + "duration_ts": 5810680, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "86", + "BPS-eng": "86", + "DURATION": "01:35:14.542000000", + "DURATION-eng": "01:35:14.542000000", + "NUMBER_OF_BYTES": "62124", + "NUMBER_OF_BYTES-eng": "62124", + "NUMBER_OF_FRAMES": "1268", + "NUMBER_OF_FRAMES-eng": "1268", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-28 15:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-28 15:49:58", + "language": "eng", + "title": "English" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5810.680000", + "duration_ts": 5810680, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "BPS": "91", + "BPS-eng": "91", + "DURATION": "01:35:44.531000000", + "DURATION-eng": "01:35:44.531000000", + "NUMBER_OF_BYTES": "65415", + "NUMBER_OF_BYTES-eng": "65415", + "NUMBER_OF_FRAMES": "1365", + "NUMBER_OF_FRAMES-eng": "1365", + "_STATISTICS_TAGS": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_TAGS-eng": "BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES", + "_STATISTICS_WRITING_APP": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_APP-eng": "mkvmerge v8.5.1 ('Where you lead I will follow') 64bit", + "_STATISTICS_WRITING_DATE_UTC": "2018-10-28 15:49:58", + "_STATISTICS_WRITING_DATE_UTC-eng": "2018-10-28 15:49:58", + "language": "eng", + "title": "English SDH" + }, + "time_base": "1/1000" + } + ] + }, + "Star Wars Episode I The Phantom Menace (1999)/Star.Wars.Episode.1.The.Phantom.Menace.1999.1080p.BrRip.x264.BOKUTOX.YIFY.mp4": { + "format": { + "bit_rate": "1893023", + "duration": "8170.943333", + "filename": "Star Wars Episode I The Phantom Menace (1999)/Star.Wars.Episode.1.The.Phantom.Menace.1999.1080p.BrRip.x264.BOKUTOX.YIFY.mp4", + "format_long_name": "QuickTime / MOV", + "format_name": "mov,mp4,m4a,3gp,3g2,mj2", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1933473888", + "start_time": "0.000000", + "tags": { + "compatible_brands": "isomavc1", + "creation_time": "2013-02-22T08:21:45.000000Z", + "major_brand": "isom", + "minor_version": "1" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bit_rate": "1797074", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x31637661", + "codec_tag_string": "avc1", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 816, + "coded_width": 1920, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8170.912750", + "duration_ts": 196101906, + "has_b_frames": 2, + "height": 816, + "index": 0, + "is_avc": "true", + "level": 40, + "nal_length_size": "4", + "nb_frames": "195906", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 3003, + "start_time": "0.125125", + "tags": { + "creation_time": "2013-02-22T08:21:45.000000Z", + "handler_name": "Wars.Episode.1.The.Phantom.Menace.1999.1080p.BluRay.xnHD.x264-NhaNc3.mkv.264#trackID=1:fps=23.976@GPAC0.5.1-DEV-rev4283", + "language": "und" + }, + "time_base": "1/24000", + "width": 1920 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "92000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x6134706d", + "codec_tag_string": "mp4a", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "8170.944000", + "duration_ts": 392205312, + "index": 1, + "max_bit_rate": "97584", + "nb_frames": "383013", + "profile": "LC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "creation_time": "2013-02-21T19:15:55.000000Z", + "handler_name": "Sound Media Handler", + "language": "eng" + }, + "time_base": "1/48000" + } + ] + }, + "Van Helsing/Van Helsing.avi": { + "format": { + "bit_rate": "1557085", + "duration": "7550.640000", + "filename": "Van Helsing/Van Helsing.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "1469624320", + "start_time": "0.000000", + "tags": { + "IAS1": "English", + "encoder": "VirtualDubMod 1.5.4.1 (build 2066/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "25/1", + "bit_rate": "1163381", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "1/25", + "codec_type": "video", + "coded_height": 320, + "coded_width": 608, + "display_aspect_ratio": "19:10", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "7550.640000", + "duration_ts": 188766, + "has_b_frames": 1, + "height": 320, + "index": 0, + "level": 5, + "nb_frames": "188766", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "25/1", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/25", + "width": 608 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "384000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "362430720", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/48000" + } + ] + }, + "Frost Nixon (2008)/Frost.Nixon.2008.720p.x264 .YIFY.mkv": { + "format": { + "bit_rate": "797377", + "duration": "7311.574000", + "filename": "Frost Nixon (2008)/Frost.Nixon.2008.720p.x264 .YIFY.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 3, + "probe_score": 100, + "size": "728761031", + "start_time": "0.000000", + "tags": { + "creation_time": "2011-05-02T06:08:32.000000Z", + "encoder": "libebml v1.2.0 + libmatroska v1.1.0", + "title": "Frost Nixon - YIFY" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 544, + "coded_width": 1280, + "display_aspect_ratio": "40:17", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 544, + "index": 0, + "is_avc": "true", + "level": 32, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "title": "Frost Nixon - YIFY" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "AAC (Advanced Audio Coding)", + "codec_name": "aac", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "HE-AAC", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "united300.blogspot.com | 300mbunited.com | rapidpremium.net" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Frost Nixon - YIFY" + }, + "time_base": "1/1000" + } + ] + }, + "Peter Pan (1953)/Peter.Pan.1953.1080p.BluRay.X264-AMIABLE.mkv": { + "format": { + "bit_rate": "8152252", + "duration": "4606.435000", + "filename": "Peter Pan (1953)/Peter.Pan.1953.1080p.BluRay.X264-AMIABLE.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 4, + "probe_score": 100, + "size": "4694102614", + "start_time": "0.000000", + "tags": { + "encoder": "libebml v1.0.0 + libmatroska v1.0" + } + }, + "streams": [ + { + "avg_frame_rate": "24000/1001", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1001/48000", + "codec_type": "video", + "coded_height": 1080, + "coded_width": 1440, + "display_aspect_ratio": "4:3", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 1080, + "index": 0, + "is_avc": "true", + "level": 41, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "24000/1001", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000", + "width": 1440 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4606.435000", + "duration_ts": 4606435, + "index": 2, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "SubRip subtitle", + "codec_name": "subrip", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "4606.435000", + "duration_ts": 4606435, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + } + ] + }, + "Stay (2005)/Stay[2005]DvDrip.AC3[Eng]-aXXo.avi": { + "format": { + "bit_rate": "989159", + "duration": "5936.895229", + "filename": "Stay (2005)/Stay[2005]DvDrip.AC3[Eng]-aXXo.avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "734066688", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "819818", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 242, + "coded_width": 584, + "display_aspect_ratio": "292:121", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5936.895229", + "duration_ts": 142343, + "has_b_frames": 1, + "height": 242, + "index": 0, + "level": 5, + "nb_frames": "142343", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 584 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "160000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "ATSC A/52A (AC-3)", + "codec_name": "ac3", + "codec_tag": "0x2000", + "codec_tag_string": "[0] [0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "dmix_mode": "-1", + "index": 1, + "loro_cmixlev": "-1.000000", + "loro_surmixlev": "-1.000000", + "ltrt_cmixlev": "-1.000000", + "ltrt_surmixlev": "-1.000000", + "nb_frames": "118737905", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "1/20000" + } + ] + }, + "Vicky Cristina Barcelona (2008)/Vicky.Cristina.Barcelona[2008]DvDrip-aXXo .avi": { + "format": { + "bit_rate": "1019312", + "duration": "5770.979313", + "filename": "Vicky Cristina Barcelona (2008)/Vicky.Cristina.Barcelona[2008]DvDrip-aXXo .avi", + "format_long_name": "AVI (Audio Video Interleaved)", + "format_name": "avi", + "nb_programs": 0, + "nb_streams": 2, + "probe_score": 100, + "size": "735303680", + "start_time": "0.000000", + "tags": { + "encoder": "VirtualDubMod 1.5.10.1 (build 2366/release)" + } + }, + "streams": [ + { + "avg_frame_rate": "2997/125", + "bit_rate": "882005", + "chroma_location": "left", + "codec_long_name": "MPEG-4 part 2", + "codec_name": "mpeg4", + "codec_tag": "0x44495658", + "codec_tag_string": "XVID", + "codec_time_base": "125/2997", + "codec_type": "video", + "coded_height": 334, + "coded_width": 628, + "display_aspect_ratio": "314:167", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "divx_packed": "false", + "duration": "5770.979313", + "duration_ts": 138365, + "has_b_frames": 1, + "height": 334, + "index": 0, + "level": 5, + "nb_frames": "138365", + "pix_fmt": "yuv420p", + "profile": "Advanced Simple Profile", + "quarter_sample": "false", + "r_frame_rate": "2997/125", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "125/2997", + "width": 628 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "128000", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "MP3 (MPEG audio layer 3)", + "codec_name": "mp3", + "codec_tag": "0x0055", + "codec_tag_string": "U[0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "nb_frames": "240457", + "r_frame_rate": "0/0", + "sample_fmt": "s16p", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "time_base": "3/125" + } + ] + }, + "Cloverfield (2008)/Cloverfield.2008.720p.BluRay.DTS.x264-ESiR.mkv": { + "format": { + "bit_rate": "7389440", + "duration": "5080.557000", + "filename": "Cloverfield (2008)/Cloverfield.2008.720p.BluRay.DTS.x264-ESiR.mkv", + "format_long_name": "Matroska / WebM", + "format_name": "matroska,webm", + "nb_programs": 0, + "nb_streams": 15, + "probe_score": 100, + "size": "4692809033", + "start_time": "0.000000", + "tags": { + "creation_time": "2008-06-04T18:10:14.000000Z", + "encoder": "libebml v0.7.7 + libmatroska v0.8.1", + "title": "Cloverfield.2008.720p.BluRay.DTS.x264-ESiR" + } + }, + "streams": [ + { + "avg_frame_rate": "27021/1127", + "bits_per_raw_sample": "8", + "chroma_location": "left", + "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10", + "codec_name": "h264", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1127/54042", + "codec_type": "video", + "coded_height": 720, + "coded_width": 1280, + "display_aspect_ratio": "16:9", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "field_order": "progressive", + "has_b_frames": 2, + "height": 720, + "index": 0, + "is_avc": "true", + "level": 51, + "nal_length_size": "4", + "pix_fmt": "yuv420p", + "profile": "High", + "r_frame_rate": "27021/1127", + "refs": 1, + "sample_aspect_ratio": "1:1", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Cloverfield" + }, + "time_base": "1/1000", + "width": 1280 + }, + { + "avg_frame_rate": "0/0", + "bit_rate": "1536000", + "bits_per_sample": 0, + "channel_layout": "5.1(side)", + "channels": 6, + "codec_long_name": "DCA (DTS Coherent Acoustics)", + "codec_name": "dts", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 1, + "profile": "DTS", + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "DTS 5.1 @ 1.5 Mbps" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "bits_per_sample": 0, + "channel_layout": "stereo", + "channels": 2, + "codec_long_name": "Vorbis", + "codec_name": "vorbis", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "1/48000", + "codec_type": "audio", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "index": 2, + "r_frame_rate": "0/0", + "sample_fmt": "fltp", + "sample_rate": "48000", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng", + "title": "Vorbis 2.0 @ 80 kbps - commentary" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 1, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 3, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "eng" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 4, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "rum" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 5, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fin" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 6, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dan" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 7, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "dut" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 8, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "fre" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 9, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "spa" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 10, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "por" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "ASS (Advanced SSA) subtitle", + "codec_name": "ass", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_time_base": "0/1", + "codec_type": "subtitle", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 5080557, + "index": 11, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "language": "hun" + }, + "time_base": "1/1000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 457250130, + "index": 12, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Bold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 457250130, + "index": 13, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-Semibold.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + }, + { + "avg_frame_rate": "0/0", + "codec_long_name": "TrueType font", + "codec_name": "ttf", + "codec_tag": "0x0000", + "codec_tag_string": "[0][0][0][0]", + "codec_type": "attachment", + "disposition": { + "attached_pic": 0, + "clean_effects": 0, + "comment": 0, + "default": 0, + "dub": 0, + "forced": 0, + "hearing_impaired": 0, + "karaoke": 0, + "lyrics": 0, + "original": 0, + "timed_thumbnails": 0, + "visual_impaired": 0 + }, + "duration": "5080.557000", + "duration_ts": 457250130, + "index": 14, + "r_frame_rate": "0/0", + "start_pts": 0, + "start_time": "0.000000", + "tags": { + "filename": "CronosPro-SemiboldIt.ttf", + "mimetype": "application/x-truetype-font" + }, + "time_base": "1/90000" + } + ] + } +}