mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Compare commits
No commits in common. "master" and "v3.3.5" have entirely different histories.
31 changed files with 1457 additions and 2095 deletions
|
|
@ -12,26 +12,14 @@ depends=('ffmpeg' 'openssl')
|
|||
makedepends=('cargo')
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/crunchy-labs/crunchy-cli/archive/refs/tags/v${pkgver}.tar.gz")
|
||||
sha256sums=('$CI_SHA_SUM')
|
||||
# lto causes linking errors when executed by this buildscript. besides, lto is already done by cargo itself (which doesn't cause linking errors)
|
||||
options=(!lto)
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/${pkgname}-$pkgver"
|
||||
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
export CARGO_HOME="$srcdir/cargo-home"
|
||||
|
||||
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/${pkgname}-$pkgver"
|
||||
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
export CARGO_HOME="$srcdir/cargo-home"
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
|
||||
export CRUNCHY_CLI_GIT_HASH=$CI_GIT_HASH
|
||||
cargo build --frozen --release
|
||||
cargo build --release
|
||||
}
|
||||
|
||||
package() {
|
||||
|
|
@ -1,9 +1,7 @@
|
|||
name: build
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
|
|
@ -41,7 +39,7 @@ jobs:
|
|||
run: cargo install --force cross
|
||||
|
||||
- name: Build
|
||||
run: cross build --locked --release --no-default-features --features openssl-tls-static --target ${{ matrix.toolchain }}
|
||||
run: cross build --release --no-default-features --features openssl-tls-static --target ${{ matrix.toolchain }}
|
||||
|
||||
- name: Upload binary artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
@ -101,7 +99,7 @@ jobs:
|
|||
toolchain: stable
|
||||
|
||||
- name: Build
|
||||
run: cargo build --locked --release --target ${{ matrix.toolchain }}
|
||||
run: cargo build --release --target ${{ matrix.toolchain }}
|
||||
|
||||
- name: Upload binary artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
@ -135,7 +133,7 @@ jobs:
|
|||
|
||||
- name: Build
|
||||
shell: msys2 {0}
|
||||
run: cargo build --locked --release --target x86_64-pc-windows-gnu
|
||||
run: cargo build --release --target x86_64-pc-windows-gnu
|
||||
|
||||
- name: Upload binary artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
58
.github/workflows/lint.yml
vendored
58
.github/workflows/lint.yml
vendored
|
|
@ -1,58 +0,0 @@
|
|||
name: lint
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
fmt:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Cargo cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/bin/
|
||||
~/.cargo/registry/index/
|
||||
~/.cargo/registry/cache/
|
||||
~/.cargo/git/db/
|
||||
target/
|
||||
key: x86_64-unknown-linux-gnu-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Setup Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Check fmt
|
||||
run: cargo fmt --check
|
||||
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Cargo cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/bin/
|
||||
~/.cargo/registry/index/
|
||||
~/.cargo/registry/cache/
|
||||
~/.cargo/git/db/
|
||||
target/
|
||||
key: x86_64-unknown-linux-gnu-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Setup Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Lint
|
||||
run: cargo clippy -- -D warnings
|
||||
8
.github/workflows/publish.yml
vendored
8
.github/workflows/publish.yml
vendored
|
|
@ -20,15 +20,11 @@ jobs:
|
|||
curl -LO https://github.com/crunchy-labs/crunchy-cli/archive/refs/tags/${{ github.ref_name }}.tar.gz
|
||||
echo "CRUNCHY_CLI_SHA256=$(sha256sum ${{ github.ref_name }}.tar.gz | cut -f 1 -d ' ')" >> $GITHUB_ENV
|
||||
|
||||
- name: Get release commit hash
|
||||
run: echo "CRUNCHY_CLI_GIT_HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
||||
|
||||
- name: Generate crunchy-cli PKGBUILD
|
||||
env:
|
||||
CI_PKG_VERSION: ${{ env.RELEASE_VERSION }}
|
||||
CI_SHA_SUM: ${{ env.CRUNCHY_CLI_SHA256 }}
|
||||
CI_GIT_HASH: ${{ env.CRUNCHY_CLI_GIT_HASH }}
|
||||
run: envsubst '$CI_PKG_VERSION,$CI_SHA_SUM,$CI_GIT_HASH' < .github/workflow-resources/PKGBUILD.source > PKGBUILD
|
||||
run: envsubst '$CI_PKG_VERSION,$CI_SHA_SUM' < .github/scripts/PKGBUILD.source > PKGBUILD
|
||||
|
||||
- name: Publish crunchy-cli to AUR
|
||||
uses: KSXGitHub/github-actions-deploy-aur@v2.7.0
|
||||
|
|
@ -61,7 +57,7 @@ jobs:
|
|||
CI_MANPAGES_SHA_SUM: ${{ env.CRUNCHY_CLI_BIN_MANPAGES_SHA256 }}
|
||||
CI_COMPLETIONS_SHA_SUM: ${{ env.CRUNCHY_CLI_BIN_COMPLETIONS_SHA256 }}
|
||||
CI_LICENSE_SHA_SUM: ${{ env.CRUNCHY_CLI_BIN_LICENSE_SHA256 }}
|
||||
run: envsubst '$CI_PKG_VERSION,$CI_AMD_BINARY_SHA_SUM,$CI_ARM_BINARY_SHA_SUM,$CI_COMPLETIONS_SHA_SUM,$CI_MANPAGES_SHA_SUM,$CI_LICENSE_SHA_SUM' < .github/workflow-resources/PKGBUILD.binary > PKGBUILD
|
||||
run: envsubst '$CI_PKG_VERSION,$CI_AMD_BINARY_SHA_SUM,$CI_ARM_BINARY_SHA_SUM,$CI_COMPLETIONS_SHA_SUM,$CI_MANPAGES_SHA_SUM,$CI_LICENSE_SHA_SUM' < .github/scripts/PKGBUILD.binary > PKGBUILD
|
||||
|
||||
- name: Publish crunchy-cli-bin to AUR
|
||||
uses: KSXGitHub/github-actions-deploy-aur@v2.7.0
|
||||
|
|
|
|||
457
Cargo.lock
generated
457
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "crunchy-cli"
|
||||
authors = ["Crunchy Labs Maintainers"]
|
||||
version = "3.6.7"
|
||||
version = "3.3.5"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
|
||||
|
|
@ -14,9 +14,9 @@ openssl-tls = ["dep:native-tls-crate", "native-tls-crate/openssl", "crunchy-cli-
|
|||
openssl-tls-static = ["dep:native-tls-crate", "native-tls-crate/openssl", "crunchy-cli-core/openssl-tls-static"]
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.38", features = ["macros", "rt-multi-thread", "time"], default-features = false }
|
||||
tokio = { version = "1.37", features = ["macros", "rt-multi-thread", "time"], default-features = false }
|
||||
|
||||
native-tls-crate = { package = "native-tls", version = "0.2.12", optional = true }
|
||||
native-tls-crate = { package = "native-tls", version = "0.2.11", optional = true }
|
||||
|
||||
crunchy-cli-core = { path = "./crunchy-cli-core" }
|
||||
|
||||
|
|
@ -34,7 +34,7 @@ members = ["crunchy-cli-core"]
|
|||
[patch.crates-io]
|
||||
# fork of the `native-tls` crate which can use openssl as backend on every platform. this is done as `reqwest` only
|
||||
# supports `rustls` and `native-tls` as tls backend
|
||||
native-tls = { git = "https://github.com/crunchy-labs/rust-not-so-native-tls.git", rev = "c7ac566" }
|
||||
native-tls = { git = "https://github.com/crunchy-labs/rust-not-so-native-tls.git", rev = "fdba246" }
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
|
|
|
|||
145
README.md
145
README.md
|
|
@ -1,4 +1,6 @@
|
|||
# This project has been sunset as Crunchyroll moved to a DRM-only system. See [#362](https://github.com/crunchy-labs/crunchy-cli/issues/362).
|
||||
> ~~This project has been sunset as Crunchyroll moved to a DRM-only system. See [#362](https://github.com/crunchy-labs/crunchy-cli/issues/362).~~
|
||||
>
|
||||
> Well there is one endpoint which still has DRM-free streams, I guess I still have a bit time until (finally) everything is DRM-only.
|
||||
|
||||
# crunchy-cli
|
||||
|
||||
|
|
@ -20,8 +22,8 @@
|
|||
<a href="https://discord.gg/PXGPGpQxgk">
|
||||
<img src="https://img.shields.io/discord/994882878125121596?label=discord&style=flat-square" alt="Discord">
|
||||
</a>
|
||||
<a href="https://github.com/crunchy-labs/crunchy-cli/actions/workflows/build.yml">
|
||||
<img src="https://img.shields.io/github/actions/workflow/status/crunchy-labs/crunchy-cli/build.yml?branch=master&style=flat-square" alt="Build">
|
||||
<a href="https://github.com/crunchy-labs/crunchy-cli/actions/workflows/ci.yml">
|
||||
<img src="https://img.shields.io/github/actions/workflow/status/crunchy-labs/crunchy-cli/ci.yml?branch=master&style=flat-square" alt="CI">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
|
@ -114,13 +116,23 @@ crunchy-cli requires you to log in.
|
|||
Though you can use a non-premium account, you will not have access to premium content without a subscription.
|
||||
You can authenticate with your credentials (email:password) or by using a refresh token.
|
||||
|
||||
- <span id="global-credentials">Credentials</span>
|
||||
- Credentials
|
||||
|
||||
```shell
|
||||
$ crunchy-cli --credentials "email:password" <command>
|
||||
```
|
||||
|
||||
- <span id="global-anonymous">Stay Anonymous</span>
|
||||
- Refresh Token
|
||||
|
||||
To obtain a refresh token, you have to log in at [crunchyroll.com](https://www.crunchyroll.com/) and extract the `etp_rt` cookie.
|
||||
The easiest way to get it is via a browser extension which lets you export your cookies, like [Cookie-Editor](https://cookie-editor.cgagnier.ca/) ([Firefox](https://addons.mozilla.org/en-US/firefox/addon/cookie-editor/) / [Chrome](https://chrome.google.com/webstore/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm)).
|
||||
When installed, look for the `etp_rt` entry and extract its value.
|
||||
|
||||
```shell
|
||||
$ crunchy-cli --etp-rt "4ebf1690-53a4-491a-a2ac-488309120f5d" <command>
|
||||
```
|
||||
|
||||
- Stay Anonymous
|
||||
|
||||
Login without an account (you won't be able to access premium content):
|
||||
|
||||
|
|
@ -132,7 +144,7 @@ You can authenticate with your credentials (email:password) or by using a refres
|
|||
|
||||
You can set specific settings which will be
|
||||
|
||||
- <span id="global-verbose">Verbose output</span>
|
||||
- Verbose output
|
||||
|
||||
If you want to include debug information in the output, use the `-v` / `--verbose` flag to show it.
|
||||
|
||||
|
|
@ -140,9 +152,9 @@ You can set specific settings which will be
|
|||
$ crunchy-cli -v <command>
|
||||
```
|
||||
|
||||
This flag can't be used in combination with `-q` / `--quiet`.
|
||||
This flag can't be used with `-q` / `--quiet`.
|
||||
|
||||
- <span id="global-quiet">Quiet output</span>
|
||||
- Quiet output
|
||||
|
||||
If you want to hide all output, use the `-q` / `--quiet` flag to do so.
|
||||
This is especially useful if you want to pipe the output video to an external program (like a video player).
|
||||
|
|
@ -151,9 +163,7 @@ You can set specific settings which will be
|
|||
$ crunchy-cli -q <command>
|
||||
```
|
||||
|
||||
This flag can't be used in combination with `-v` / `--verbose`.
|
||||
|
||||
- <span id="global-lang">Language</span>
|
||||
- Language
|
||||
|
||||
By default, the resulting metadata like title or description are shown in your system language (if Crunchyroll supports it, else in English).
|
||||
If you want to show the results in another language, use the `--lang` flag to set it.
|
||||
|
|
@ -162,7 +172,7 @@ You can set specific settings which will be
|
|||
$ crunchy-cli --lang de-DE <command>
|
||||
```
|
||||
|
||||
- <span id="global-experimental-fixes">Experimental fixes</span>
|
||||
- Experimental fixes
|
||||
|
||||
Crunchyroll constantly changes and breaks its services or just delivers incorrect answers.
|
||||
The `--experimental-fixes` flag tries to fix some of those issues.
|
||||
|
|
@ -174,7 +184,7 @@ You can set specific settings which will be
|
|||
|
||||
For an overview which parts this flag affects, see the [documentation](https://docs.rs/crunchyroll-rs/latest/crunchyroll_rs/crunchyroll/struct.CrunchyrollBuilder.html) of the underlying Crunchyroll library, all functions beginning with `stabilization_` are applied.
|
||||
|
||||
- <span id="global-proxy">Proxy</span>
|
||||
- Proxy
|
||||
|
||||
The `--proxy` flag supports https and socks5 proxies to route all your traffic through.
|
||||
This may be helpful to bypass the geo-restrictions Crunchyroll has on certain series.
|
||||
|
|
@ -187,7 +197,7 @@ You can set specific settings which will be
|
|||
|
||||
Make sure that proxy can either forward TLS requests, which is needed to bypass the (cloudflare) bot protection, or that it is configured so that the proxy can bypass the protection itself.
|
||||
|
||||
- <span id="global-user-agent">User Agent</span>
|
||||
- User Agent
|
||||
|
||||
There might be cases where a custom user agent is necessary, e.g. to bypass the cloudflare bot protection (#104).
|
||||
In such cases, the `--user-agent` flag can be used to set a custom user agent.
|
||||
|
|
@ -198,7 +208,7 @@ You can set specific settings which will be
|
|||
|
||||
Default is the user agent, defined in the underlying [library](https://github.com/crunchy-labs/crunchyroll-rs).
|
||||
|
||||
- <span id="global-speed-limit">Speed limit</span>
|
||||
- Speed limit
|
||||
|
||||
If you want to limit how fast requests/downloads should be, you can use the `--speed-limit` flag. Allowed units are `B` (bytes), `KB` (kilobytes) and `MB` (megabytes).
|
||||
|
||||
|
|
@ -214,9 +224,11 @@ The `login` command can store your session, so you don't have to authenticate ev
|
|||
# save the refresh token which gets generated when login with credentials.
|
||||
# your email and password won't be stored at any time on disk
|
||||
$ crunchy-cli login --credentials "email:password"
|
||||
# save etp-rt cookie
|
||||
$ crunchy-cli login --etp-rt "4ebf1690-53a4-491a-a2ac-488309120f5d"
|
||||
```
|
||||
|
||||
With the session stored, you do not need to pass `--credentials` / `--anonymous` anymore when you want to execute a command.
|
||||
With the session stored, you do not need to pass `--credentials` / `--etp-rt` / `--anonymous` anymore when you want to execute a command.
|
||||
|
||||
### Download
|
||||
|
||||
|
|
@ -235,7 +247,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
**Options**
|
||||
|
||||
- <span id="download-audio">Audio language</span>
|
||||
- Audio language
|
||||
|
||||
Set the audio language with the `-a` / `--audio` flag.
|
||||
This only works if the url points to a series since episode urls are language specific.
|
||||
|
|
@ -246,7 +258,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
Default is your system locale. If not supported by Crunchyroll, `en-US` (American English) is the default.
|
||||
|
||||
- <span id="download-subtitle">Subtitle language</span>
|
||||
- Subtitle language
|
||||
|
||||
Besides the audio, you can specify the subtitle language by using the `-s` / `--subtitle` flag.
|
||||
In formats that support it (.mp4, .mov and .mkv ), subtitles are stored as soft-subs. All other formats are hardsubbed: the subtitles will be burned into the video track (cf. [hardsub](https://www.urbandictionary.com/define.php?term=hardsub)) and thus can not be turned off.
|
||||
|
|
@ -257,7 +269,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
Default is none.
|
||||
|
||||
- <span id="download-output">Output template</span>
|
||||
- Output template
|
||||
|
||||
Define an output template by using the `-o` / `--output` flag.
|
||||
|
||||
|
|
@ -267,7 +279,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
Default is `{title}.mp4`. See the [Template Options section](#output-template-options) below for more options.
|
||||
|
||||
- <span id="download-output-specials">Output template for special episodes</span>
|
||||
- Output template for special episodes
|
||||
|
||||
Define an output template which only gets used when the episode is a special (episode number is 0 or has non-zero decimal places) by using the `--output-special` flag.
|
||||
|
||||
|
|
@ -277,7 +289,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
Default is the template, set by the `-o` / `--output` flag. See the [Template Options section](#output-template-options) below for more options.
|
||||
|
||||
- <span id="download-universal-output">Universal output</span>
|
||||
- Universal output
|
||||
|
||||
The output template options can be forced to get sanitized via the `--universal-output` flag to be valid across all supported operating systems (Windows has a lot of characters which aren't allowed in filenames...).
|
||||
|
||||
|
|
@ -285,7 +297,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --universal-output -o https://www.crunchyroll.com/watch/G7PU4XD48/tales-veldoras-journal-2
|
||||
```
|
||||
|
||||
- <span id="download-resolution">Resolution</span>
|
||||
- Resolution
|
||||
|
||||
The resolution for videos can be set via the `-r` / `--resolution` flag.
|
||||
|
||||
|
|
@ -295,7 +307,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
Default is `best`.
|
||||
|
||||
- <span id="download-language-tagging">Language tagging</span>
|
||||
- Language tagging
|
||||
|
||||
You can force the usage of a specific language tagging in the output file with the `--language-tagging` flag.
|
||||
This might be useful as some video players doesn't recognize the language tagging Crunchyroll uses internally.
|
||||
|
|
@ -304,7 +316,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --language-tagging ietf https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
- <span id="download-ffmpeg-preset">FFmpeg Preset</span>
|
||||
- FFmpeg Preset
|
||||
|
||||
You can specify specific built-in presets with the `--ffmpeg-preset` flag to convert videos to a specific coding while downloading.
|
||||
Multiple predefined presets how videos should be encoded (h264, h265, av1, ...) are available, you can see them with `crunchy-cli download --help`.
|
||||
|
|
@ -314,7 +326,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --ffmpeg-preset av1-lossless https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
- <span id="download-ffmpeg-threads">FFmpeg threads</span>
|
||||
- FFmpeg threads
|
||||
|
||||
If you want to manually set how many threads FFmpeg should use, you can use the `--ffmpeg-threads` flag. This does not work with every codec/preset and is skipped entirely when specifying custom ffmpeg output arguments instead of a preset for `--ffmpeg-preset`.
|
||||
|
||||
|
|
@ -322,7 +334,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --ffmpeg-threads 4 https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
- <span id="download-skip-existing">Skip existing</span>
|
||||
- Skip existing
|
||||
|
||||
If you re-download a series but want to skip episodes you've already downloaded, the `--skip-existing` flag skips the already existing/downloaded files.
|
||||
|
||||
|
|
@ -330,7 +342,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --skip-existing https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
```
|
||||
|
||||
- <span id="download-skip-specials">Skip specials</span>
|
||||
- Skip specials
|
||||
|
||||
If you doesn't want to download special episodes, use the `--skip-specials` flag to skip the download of them.
|
||||
|
||||
|
|
@ -338,7 +350,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --skip-specials https://www.crunchyroll.com/series/GYZJ43JMR/that-time-i-got-reincarnated-as-a-slime[S2]
|
||||
```
|
||||
|
||||
- <span id="download-include-chapters">Include chapters</span>
|
||||
- Include chapters
|
||||
|
||||
Crunchyroll sometimes provide information about skippable events like the intro or credits.
|
||||
These information can be stored as chapters in the resulting video file via the `--include-chapters` flag.
|
||||
|
|
@ -347,7 +359,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --include-chapters https://www.crunchyroll.com/watch/G0DUND0K2/the-journeys-end
|
||||
```
|
||||
|
||||
- <span id="download-yes">Yes</span>
|
||||
- Yes
|
||||
|
||||
Sometimes different seasons have the same season number (e.g. Sword Art Online Alicization and Alicization War of Underworld are both marked as season 3), in such cases an interactive prompt is shown which needs user further user input to decide which season to download.
|
||||
The `--yes` flag suppresses this interactive prompt and just downloads all seasons.
|
||||
|
|
@ -358,7 +370,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
|
||||
If you've passed the `-q` / `--quiet` [global flag](#global-settings), this flag is automatically set.
|
||||
|
||||
- <span id="download-force-hardsub">Force hardsub</span>
|
||||
- Force hardsub
|
||||
|
||||
If you want to burn-in the subtitles, even if the output format/container supports soft-subs (e.g. `.mp4`), use the `--force-hardsub` flag to do so.
|
||||
|
||||
|
|
@ -366,7 +378,7 @@ The `download` command lets you download episodes with a specific audio language
|
|||
$ crunchy-cli download --force-hardsub -s en-US https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
- <span id="download-threads">Threads</span>
|
||||
- Threads
|
||||
|
||||
To increase the download speed, video segments are downloaded simultaneously by creating multiple threads.
|
||||
If you want to manually specify how many threads to use when downloading, do this with the `-t` / `--threads` flag.
|
||||
|
|
@ -394,7 +406,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
**Options**
|
||||
|
||||
- <span id="archive-audio">Audio languages</span>
|
||||
- Audio languages
|
||||
|
||||
Set the audio language with the `-a` / `--audio` flag. Can be used multiple times.
|
||||
|
||||
|
|
@ -404,7 +416,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is your system locale (if not supported by Crunchyroll, `en-US` (American English) and `ja-JP` (Japanese) are used).
|
||||
|
||||
- <span id="archive-subtitle">Subtitle languages</span>
|
||||
- Subtitle languages
|
||||
|
||||
Besides the audio, you can specify the subtitle language by using the `-s` / `--subtitle` flag.
|
||||
|
||||
|
|
@ -414,7 +426,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is `all` subtitles.
|
||||
|
||||
- <span id="archive-output">Output template</span>
|
||||
- Output template
|
||||
|
||||
Define an output template by using the `-o` / `--output` flag.
|
||||
_crunchy-cli_ exclusively uses the [`.mkv`](https://en.wikipedia.org/wiki/Matroska) container format, because of its ability to store multiple audio, video and subtitle tracks at once.
|
||||
|
|
@ -425,7 +437,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is `{title}.mkv`. See the [Template Options section](#output-template-options) below for more options.
|
||||
|
||||
- <span id="archive-output-specials">Output template for special episodes</span>
|
||||
- Output template for special episodes
|
||||
|
||||
Define an output template which only gets used when the episode is a special (episode number is 0 or has non-zero decimal places) by using the `--output-special` flag.
|
||||
_crunchy-cli_ exclusively uses the [`.mkv`](https://en.wikipedia.org/wiki/Matroska) container format, because of its ability to store multiple audio, video and subtitle tracks at once.
|
||||
|
|
@ -436,7 +448,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is the template, set by the `-o` / `--output` flag. See the [Template Options section](#output-template-options) below for more options.
|
||||
|
||||
- <span id="archive-universal-output">Universal output</span>
|
||||
- Universal output
|
||||
|
||||
The output template options can be forced to get sanitized via the `--universal-output` flag to be valid across all supported operating systems (Windows has a lot of characters which aren't allowed in filenames...).
|
||||
|
||||
|
|
@ -444,7 +456,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --universal-output -o https://www.crunchyroll.com/watch/G7PU4XD48/tales-veldoras-journal-2
|
||||
```
|
||||
|
||||
- <span id="archive-resolution">Resolution</span>
|
||||
- Resolution
|
||||
|
||||
The resolution for videos can be set via the `-r` / `--resolution` flag.
|
||||
|
||||
|
|
@ -454,13 +466,13 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is `best`.
|
||||
|
||||
- <span id="archive-merge">Merge behavior</span>
|
||||
- Merge behavior
|
||||
|
||||
Due to censorship or additional intros, some episodes have multiple lengths for different languages.
|
||||
Due to censorship, some episodes have multiple lengths for different languages.
|
||||
In the best case, when multiple audio & subtitle tracks are used, there is only one *video* track and all other languages can be stored as audio-only.
|
||||
But, as said, this is not always the case.
|
||||
With the `-m` / `--merge` flag you can define the behaviour when an episodes' video tracks differ in length.
|
||||
Valid options are `audio` - store one video and all other languages as audio only; `video` - store the video + audio for every language; `auto` - detect if videos differ in length: if so, behave like `video` - otherwise like `audio`; `sync` - detect if videos differ in length: if so, it tries to find the offset of matching audio parts and removes the offset from the beginning, otherwise it behaves like `audio`.
|
||||
Valid options are `audio` - store one video and all other languages as audio only; `video` - store the video + audio for every language; `auto` - detect if videos differ in length: if so, behave like `video` - otherwise like `audio`.
|
||||
Subtitles will always match the primary audio and video.
|
||||
|
||||
```shell
|
||||
|
|
@ -469,39 +481,18 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is `auto`.
|
||||
|
||||
- <span id="archive-merge-time-tolerance">Merge time tolerance</span>
|
||||
- Merge auto tolerance
|
||||
|
||||
Sometimes two video tracks are downloaded with `--merge` set to `auto` even if they only differ some milliseconds in length which shouldn't be noticeable to the viewer.
|
||||
To prevent this, you can specify a range in milliseconds with the `--merge-time-tolerance` flag that only downloads one video if the length difference is in the given range.
|
||||
To prevent this, you can specify a range in milliseconds with the `--merge-auto-tolerance` flag that only downloads one video if the length difference is in the given range.
|
||||
|
||||
```shell
|
||||
$ crunchy-cli archive -m auto --merge-time-tolerance 100 https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
$ crunchy-cli archive -m auto --merge-auto-tolerance 100 https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
```
|
||||
|
||||
Default are `200` milliseconds.
|
||||
|
||||
- <span id="archive-merge-sync-tolerance">Merge sync tolerance</span>
|
||||
|
||||
Sometimes two video tracks are downloaded with `--merge` set to `sync` because the audio fingerprinting fails to identify matching audio parts (e.g. opening).
|
||||
To prevent this, you can use the `--merge-sync-tolerance` flag to specify the difference by which two fingerprints are considered equal.
|
||||
|
||||
```shell
|
||||
$ crunchy-cli archive -m sync --merge-sync-tolerance 3 https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
Default is `6`.
|
||||
|
||||
- <span id="archive-merge-sync-precision">Merge sync precision</span>
|
||||
|
||||
If you use `--merge` set to `sync` and the syncing seems to be not accurate enough or takes to long, you can use the `--sync-precision` flag to specify the amount of offset determination runs from which the final offset is calculated.
|
||||
|
||||
```shell
|
||||
$ crunchy-cli archive -m sync --merge-sync-precision 3 https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
Default is `4`.
|
||||
|
||||
- <span id="archive-language-tagging">Language tagging</span>
|
||||
- Language tagging
|
||||
|
||||
You can force the usage of a specific language tagging in the output file with the `--language-tagging` flag.
|
||||
This might be useful as some video players doesn't recognize the language tagging Crunchyroll uses internally.
|
||||
|
|
@ -510,7 +501,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --language-tagging ietf https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
```
|
||||
|
||||
- <span id="archive-ffmpeg-preset">FFmpeg Preset</span>
|
||||
- FFmpeg Preset
|
||||
|
||||
You can specify specific built-in presets with the `--ffmpeg-preset` flag to convert videos to a specific coding while downloading.
|
||||
Multiple predefined presets how videos should be encoded (h264, h265, av1, ...) are available, you can see them with `crunchy-cli archive --help`.
|
||||
|
|
@ -520,7 +511,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --ffmpeg-preset av1-lossless https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
- <span id="archive-ffmpeg-threads">FFmpeg threads</span>
|
||||
- FFmpeg threads
|
||||
|
||||
If you want to manually set how many threads FFmpeg should use, you can use the `--ffmpeg-threads` flag. This does not work with every codec/preset and is skipped entirely when specifying custom ffmpeg output arguments instead of a preset for `--ffmpeg-preset`.
|
||||
|
||||
|
|
@ -528,7 +519,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --ffmpeg-threads 4 https://www.crunchyroll.com/watch/GRDQPM1ZY/alone-and-lonesome
|
||||
```
|
||||
|
||||
- <span id="archive-default-subtitle">Default subtitle</span>
|
||||
- Default subtitle
|
||||
|
||||
`--default-subtitle` Set which subtitle language is to be flagged as **default** and **forced**.
|
||||
|
||||
|
|
@ -538,7 +529,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
Default is none.
|
||||
|
||||
- <span id="archive-include-fonts">Include fonts</span>
|
||||
- Include fonts
|
||||
|
||||
You can include the fonts required by subtitles directly into the output file with the `--include-fonts` flag. This will use the embedded font for subtitles instead of the system font when playing the video in a video player which supports it.
|
||||
|
||||
|
|
@ -546,7 +537,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --include-fonts https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
```
|
||||
|
||||
- <span id="archive-include-chapters">Include chapters</span>
|
||||
- Include chapters
|
||||
|
||||
Crunchyroll sometimes provide information about skippable events like the intro or credits.
|
||||
These information can be stored as chapters in the resulting video file via the `--include-chapters` flag.
|
||||
|
|
@ -556,7 +547,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --include-chapters https://www.crunchyroll.com/watch/G0DUND0K2/the-journeys-end
|
||||
```
|
||||
|
||||
- <span id="archive-skip-existing">Skip existing</span>
|
||||
- Skip existing
|
||||
|
||||
If you re-download a series but want to skip episodes you've already downloaded, the `--skip-existing` flag skips the already existing/downloaded files.
|
||||
|
||||
|
|
@ -564,7 +555,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --skip-existing https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
```
|
||||
|
||||
- <span id="archive-skip-existing-method">Skip existing method</span>
|
||||
- Skip existing method
|
||||
|
||||
By default, already existing files are determined by their name and the download of the corresponding episode is skipped.
|
||||
But sometimes Crunchyroll adds dubs or subs to an already existing episode and these changes aren't recognized and `--skip-existing` just skips it.
|
||||
|
|
@ -574,7 +565,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --skip-existing-method audio --skip-existing-method video https://www.crunchyroll.com/series/GY8VEQ95Y/darling-in-the-franxx
|
||||
```
|
||||
|
||||
- <span id="archive-skip-specials">Skip specials</span>
|
||||
- Skip specials
|
||||
|
||||
If you doesn't want to download special episodes, use the `--skip-specials` flag to skip the download of them.
|
||||
|
||||
|
|
@ -582,7 +573,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
$ crunchy-cli archive --skip-specials https://www.crunchyroll.com/series/GYZJ43JMR/that-time-i-got-reincarnated-as-a-slime[S2]
|
||||
```
|
||||
|
||||
- <span id="archive-yes">Yes</span>
|
||||
- Yes
|
||||
|
||||
Sometimes different seasons have the same season number (e.g. Sword Art Online Alicization and Alicization War of Underworld are both marked as season 3), in such cases an interactive prompt is shown which needs user further user input to decide which season to download.
|
||||
The `--yes` flag suppresses this interactive prompt and just downloads all seasons.
|
||||
|
|
@ -593,7 +584,7 @@ The `archive` command lets you download episodes with multiple audios and subtit
|
|||
|
||||
If you've passed the `-q` / `--quiet` [global flag](#global-settings), this flag is automatically set.
|
||||
|
||||
- <span id="archive-threads">Threads</span>
|
||||
- Threads
|
||||
|
||||
To increase the download speed, video segments are downloaded simultaneously by creating multiple threads.
|
||||
If you want to manually specify how many threads to use when downloading, do this with the `-t` / `--threads` flag.
|
||||
|
|
@ -627,7 +618,7 @@ _Using this command with the `--anonymous` flag or a non-premium account may ret
|
|||
|
||||
**Options**
|
||||
|
||||
- <span id="search-audio">Audio</span>
|
||||
- Audio
|
||||
|
||||
Set the audio language to search via the `--audio` flag. Can be used multiple times.
|
||||
|
||||
|
|
@ -637,7 +628,7 @@ _Using this command with the `--anonymous` flag or a non-premium account may ret
|
|||
|
||||
Default is your system locale.
|
||||
|
||||
- <span id="search-result-limit">Result limit</span>
|
||||
- Result limit
|
||||
|
||||
If your input is a search term instead of an url, you have multiple options to control which results to process.
|
||||
The `--search-top-results-limit` flag sets the limit of top search results to process.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "crunchy-cli-core"
|
||||
authors = ["Crunchy Labs Maintainers"]
|
||||
version = "3.6.7"
|
||||
version = "3.3.5"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
|
||||
|
|
@ -16,7 +16,7 @@ anyhow = "1.0"
|
|||
async-speed-limit = "0.4"
|
||||
clap = { version = "4.5", features = ["derive", "string"] }
|
||||
chrono = "0.4"
|
||||
crunchyroll-rs = { version = "0.11.4", features = ["experimental-stabilizations", "tower"] }
|
||||
crunchyroll-rs = { version = "0.10.3", features = ["experimental-stabilizations", "tower"] }
|
||||
ctrlc = "3.4"
|
||||
dialoguer = { version = "0.11", default-features = false }
|
||||
dirs = "5.0"
|
||||
|
|
@ -30,16 +30,13 @@ log = { version = "0.4", features = ["std"] }
|
|||
num_cpus = "1.16"
|
||||
regex = "1.10"
|
||||
reqwest = { version = "0.12", features = ["socks", "stream"] }
|
||||
rsubs-lib = "~0.3.2"
|
||||
rusty-chromaprint = "0.2"
|
||||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
serde_plain = "1.0"
|
||||
shlex = "1.3"
|
||||
sys-locale = "0.3"
|
||||
tempfile = "3.10"
|
||||
time = "0.3"
|
||||
tokio = { version = "1.38", features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }
|
||||
tokio = { version = "1.37", features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }
|
||||
tokio-util = "0.7"
|
||||
tower-service = "0.3"
|
||||
rustls-native-certs = { version = "0.7", optional = true }
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
fn main() -> std::io::Result<()> {
|
||||
println!(
|
||||
"cargo:rustc-env=GIT_HASH={}",
|
||||
std::env::var("CRUNCHY_CLI_GIT_HASH")
|
||||
.or::<std::io::Error>(Ok(get_short_commit_hash()?.unwrap_or_default()))?
|
||||
get_short_commit_hash()?.unwrap_or_default()
|
||||
);
|
||||
println!(
|
||||
"cargo:rustc-env=BUILD_DATE={}",
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
use crate::archive::filter::ArchiveFilter;
|
||||
use crate::utils::context::Context;
|
||||
use crate::utils::download::{
|
||||
DownloadBuilder, DownloadFormat, DownloadFormatMetadata, MergeBehavior,
|
||||
};
|
||||
use crate::utils::ffmpeg::FFmpegPreset;
|
||||
use crate::utils::filter::{Filter, FilterMediaScope};
|
||||
use crate::utils::filter::Filter;
|
||||
use crate::utils::format::{Format, SingleFormat};
|
||||
use crate::utils::locale::{all_locale_in_locales, resolve_locales, LanguageTagging};
|
||||
use crate::utils::log::progress;
|
||||
use crate::utils::os::{free_file, has_ffmpeg, is_special_file};
|
||||
use crate::utils::parse::parse_url;
|
||||
use crate::utils::video::stream_data_from_stream;
|
||||
use crate::utils::video::variant_data_from_stream;
|
||||
use crate::Execute;
|
||||
use anyhow::bail;
|
||||
use anyhow::Result;
|
||||
|
|
@ -89,33 +90,23 @@ pub struct Archive {
|
|||
pub(crate) resolution: Resolution,
|
||||
|
||||
#[arg(
|
||||
help = "Sets the behavior of the stream merging. Valid behaviors are 'auto', 'sync', 'audio' and 'video'"
|
||||
help = "Sets the behavior of the stream merging. Valid behaviors are 'auto', 'audio' and 'video'"
|
||||
)]
|
||||
#[arg(
|
||||
long_help = "Because of local restrictions (or other reasons) some episodes with different languages does not have the same length (e.g. when some scenes were cut out). \
|
||||
With this flag you can set the behavior when handling multiple language.
|
||||
Valid options are 'audio' (stores one video and all other languages as audio only), 'video' (stores the video + audio for every language), 'auto' (detects if videos differ in length: if so, behave like 'video' else like 'audio') and 'sync' (detects if videos differ in length: if so, tries to find the offset of matching audio parts and removes it from the beginning, otherwise it behaves like 'audio')"
|
||||
Valid options are 'audio' (stores one video and all other languages as audio only), 'video' (stores the video + audio for every language) and 'auto' (detects if videos differ in length: if so, behave like 'video' else like 'audio')"
|
||||
)]
|
||||
#[arg(short, long, default_value = "auto")]
|
||||
#[arg(value_parser = MergeBehavior::parse)]
|
||||
pub(crate) merge: MergeBehavior,
|
||||
#[arg(
|
||||
help = "If the merge behavior is 'auto' or 'sync', consider videos to be of equal lengths if the difference in length is smaller than the specified milliseconds"
|
||||
help = "If the merge behavior is 'auto', only download multiple video tracks if their length difference is higher than the given milliseconds"
|
||||
)]
|
||||
#[arg(long, default_value_t = 200)]
|
||||
pub(crate) merge_time_tolerance: u32,
|
||||
#[arg(
|
||||
help = "If the merge behavior is 'sync', specify the difference by which two fingerprints are considered equal, higher values can help when the algorithm fails"
|
||||
)]
|
||||
#[arg(long, default_value_t = 6)]
|
||||
pub(crate) merge_sync_tolerance: u32,
|
||||
#[arg(
|
||||
help = "If the merge behavior is 'sync', specify the amount of offset determination runs from which the final offset is calculated, higher values will increase the time required but lead to more precise offsets"
|
||||
)]
|
||||
#[arg(long, default_value_t = 4)]
|
||||
pub(crate) merge_sync_precision: u32,
|
||||
|
||||
pub(crate) merge_auto_tolerance: u32,
|
||||
#[arg(
|
||||
long,
|
||||
help = "Specified which language tagging the audio and subtitle tracks and language specific format options should have. \
|
||||
Valid options are: 'default' (how Crunchyroll uses it internally), 'ietf' (according to the IETF standard)"
|
||||
)]
|
||||
|
|
@ -123,7 +114,6 @@ pub struct Archive {
|
|||
long_help = "Specified which language tagging the audio and subtitle tracks and language specific format options should have. \
|
||||
Valid options are: 'default' (how Crunchyroll uses it internally), 'ietf' (according to the IETF standard; you might run in issues as there are multiple locales which resolve to the same IETF language code, e.g. 'es-LA' and 'es-ES' are both resolving to 'es')"
|
||||
)]
|
||||
#[arg(long)]
|
||||
#[arg(value_parser = LanguageTagging::parse)]
|
||||
pub(crate) language_tagging: Option<LanguageTagging>,
|
||||
|
||||
|
|
@ -226,15 +216,17 @@ impl Execute for Archive {
|
|||
}
|
||||
}
|
||||
|
||||
if self.include_chapters
|
||||
&& !matches!(self.merge, MergeBehavior::Sync)
|
||||
&& !matches!(self.merge, MergeBehavior::Audio)
|
||||
{
|
||||
bail!("`--include-chapters` can only be used if `--merge` is set to 'audio' or 'sync'")
|
||||
if self.include_chapters && !matches!(self.merge, MergeBehavior::Audio) {
|
||||
bail!("`--include-chapters` can only be used if `--merge` is set to 'audio'")
|
||||
}
|
||||
|
||||
if !self.skip_existing_method.is_empty() && !self.skip_existing {
|
||||
warn!("`--skip-existing-method` has no effect if `--skip-existing` is not set")
|
||||
if self.output.contains("{resolution}")
|
||||
|| self
|
||||
.output_specials
|
||||
.as_ref()
|
||||
.map_or(false, |os| os.contains("{resolution}"))
|
||||
{
|
||||
warn!("The '{{resolution}}' format option is deprecated and will be removed in a future version. Please use '{{width}}' and '{{height}}' instead")
|
||||
}
|
||||
|
||||
self.audio = all_locale_in_locales(self.audio.clone());
|
||||
|
|
@ -264,10 +256,6 @@ impl Execute for Archive {
|
|||
}
|
||||
|
||||
async fn execute(self, ctx: Context) -> Result<()> {
|
||||
if !ctx.crunchy.premium().await {
|
||||
warn!("You may not be able to download all requested videos when logging in anonymously or using a non-premium account")
|
||||
}
|
||||
|
||||
let mut parsed_urls = vec![];
|
||||
|
||||
for (i, url) in self.urls.clone().into_iter().enumerate() {
|
||||
|
|
@ -283,55 +271,10 @@ impl Execute for Archive {
|
|||
|
||||
for (i, (media_collection, url_filter)) in parsed_urls.into_iter().enumerate() {
|
||||
let progress_handler = progress!("Fetching series details");
|
||||
let single_format_collection = Filter::new(
|
||||
url_filter,
|
||||
self.audio.clone(),
|
||||
self.subtitle.clone(),
|
||||
|scope, locales| {
|
||||
let audios = locales.into_iter().map(|l| l.to_string()).collect::<Vec<String>>().join(", ");
|
||||
match scope {
|
||||
FilterMediaScope::Series(series) => warn!("Series {} is not available with {} audio", series.title, audios),
|
||||
FilterMediaScope::Season(season) => warn!("Season {} is not available with {} audio", season.season_number, audios),
|
||||
FilterMediaScope::Episode(episodes) => {
|
||||
if episodes.len() == 1 {
|
||||
warn!("Episode {} is not available with {} audio", episodes[0].sequence_number, audios)
|
||||
} else if episodes.len() == 2 {
|
||||
warn!("Season {} is only available with {} audio from episode {} to {}", episodes[0].season_number, audios, episodes[0].sequence_number, episodes[1].sequence_number)
|
||||
} else {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(true)
|
||||
},
|
||||
|scope, locales| {
|
||||
let subtitles = locales.into_iter().map(|l| l.to_string()).collect::<Vec<String>>().join(", ");
|
||||
match scope {
|
||||
FilterMediaScope::Series(series) => warn!("Series {} is not available with {} subtitles", series.title, subtitles),
|
||||
FilterMediaScope::Season(season) => warn!("Season {} is not available with {} subtitles", season.season_number, subtitles),
|
||||
FilterMediaScope::Episode(episodes) => {
|
||||
if episodes.len() == 1 {
|
||||
warn!("Episode {} of season {} is not available with {} subtitles", episodes[0].sequence_number, episodes[0].season_title, subtitles)
|
||||
} else if episodes.len() == 2 {
|
||||
warn!("Season {} of season {} is only available with {} subtitles from episode {} to {}", episodes[0].season_number, episodes[0].season_title, subtitles, episodes[0].sequence_number, episodes[1].sequence_number)
|
||||
} else {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(true)
|
||||
},
|
||||
|season| {
|
||||
warn!("Skipping premium episodes in season {season}");
|
||||
Ok(())
|
||||
},
|
||||
Format::has_relative_fmt(&self.output),
|
||||
!self.yes,
|
||||
self.skip_specials,
|
||||
ctx.crunchy.premium().await,
|
||||
)
|
||||
.visit(media_collection)
|
||||
.await?;
|
||||
let single_format_collection =
|
||||
ArchiveFilter::new(url_filter, self.clone(), !self.yes, self.skip_specials)
|
||||
.visit(media_collection)
|
||||
.await?;
|
||||
|
||||
if single_format_collection.is_empty() {
|
||||
progress_handler.stop(format!("Skipping url {} (no matching videos found)", i + 1));
|
||||
|
|
@ -351,14 +294,6 @@ impl Execute for Archive {
|
|||
.audio_sort(Some(self.audio.clone()))
|
||||
.subtitle_sort(Some(self.subtitle.clone()))
|
||||
.no_closed_caption(self.no_closed_caption)
|
||||
.merge_sync_tolerance(match self.merge {
|
||||
MergeBehavior::Sync => Some(self.merge_sync_tolerance),
|
||||
_ => None,
|
||||
})
|
||||
.merge_sync_precision(match self.merge {
|
||||
MergeBehavior::Sync => Some(self.merge_sync_precision),
|
||||
_ => None,
|
||||
})
|
||||
.threads(self.threads)
|
||||
.audio_locale_output_map(
|
||||
zip(self.audio.clone(), self.output_audio_locales.clone()).collect(),
|
||||
|
|
@ -436,7 +371,7 @@ impl Execute for Archive {
|
|||
|| (method_subtitle && subtitle_differ)
|
||||
{
|
||||
skip = false;
|
||||
path.clone_from(&formatted_path)
|
||||
path = formatted_path.clone()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -515,7 +450,7 @@ async fn get_format(
|
|||
for single_format in single_formats {
|
||||
let stream = single_format.stream().await?;
|
||||
let Some((video, audio, _)) =
|
||||
stream_data_from_stream(&stream, &archive.resolution, None).await?
|
||||
variant_data_from_stream(&stream, &archive.resolution, None).await?
|
||||
else {
|
||||
if single_format.is_episode() {
|
||||
bail!(
|
||||
|
|
@ -540,28 +475,29 @@ async fn get_format(
|
|||
.subtitle
|
||||
.iter()
|
||||
.flat_map(|s| {
|
||||
let mut subtitles = vec![];
|
||||
if let Some(caption) = stream.captions.get(s) {
|
||||
subtitles.push((caption.clone(), true))
|
||||
}
|
||||
if let Some(subtitle) = stream.subtitles.get(s) {
|
||||
// the subtitle is probably cc if the audio is not japanese or only one subtitle
|
||||
// exists for this stream
|
||||
let cc = single_format.audio != Locale::ja_JP && stream.subtitles.len() == 1;
|
||||
// only include the subtitles if no cc subtitle is already present or if it's
|
||||
// not cc
|
||||
if subtitles.is_empty() || !cc {
|
||||
subtitles.push((subtitle.clone(), cc))
|
||||
}
|
||||
}
|
||||
let subtitles = stream
|
||||
.subtitles
|
||||
.get(s)
|
||||
.cloned()
|
||||
// the subtitle is probably not cc if the audio is japanese or more than one
|
||||
// subtitle exists for this stream
|
||||
.map(|l| {
|
||||
(
|
||||
l,
|
||||
single_format.audio == Locale::ja_JP || stream.subtitles.len() > 1,
|
||||
)
|
||||
});
|
||||
let cc = stream.captions.get(s).cloned().map(|l| (l, false));
|
||||
|
||||
subtitles
|
||||
.into_iter()
|
||||
.chain(cc.into_iter())
|
||||
.collect::<Vec<(Subtitle, bool)>>()
|
||||
})
|
||||
.collect();
|
||||
|
||||
format_pairs.push((single_format, video.clone(), audio, subtitles.clone()));
|
||||
single_format_to_format_pairs.push((single_format.clone(), video, subtitles));
|
||||
|
||||
stream.invalidate().await?
|
||||
single_format_to_format_pairs.push((single_format.clone(), video, subtitles))
|
||||
}
|
||||
|
||||
let mut download_formats = vec![];
|
||||
|
|
@ -600,7 +536,7 @@ async fn get_format(
|
|||
},
|
||||
},
|
||||
}),
|
||||
MergeBehavior::Auto | MergeBehavior::Sync => {
|
||||
MergeBehavior::Auto => {
|
||||
let mut d_formats: Vec<(Duration, DownloadFormat)> = vec![];
|
||||
|
||||
for (single_format, video, audio, subtitles) in format_pairs {
|
||||
|
|
@ -617,7 +553,7 @@ async fn get_format(
|
|||
.sub(single_format.duration)
|
||||
.abs()
|
||||
.num_milliseconds()
|
||||
< archive.merge_time_tolerance.into() =>
|
||||
< archive.merge_auto_tolerance.into() =>
|
||||
{
|
||||
// If less than `audio_error` apart, use same audio.
|
||||
closest_format
|
||||
|
|
@ -633,13 +569,7 @@ async fn get_format(
|
|||
video: (video, single_format.audio.clone()),
|
||||
audios: vec![(audio, single_format.audio.clone())],
|
||||
subtitles,
|
||||
metadata: DownloadFormatMetadata {
|
||||
skip_events: if archive.include_chapters {
|
||||
single_format.skip_events().await?
|
||||
} else {
|
||||
None
|
||||
},
|
||||
},
|
||||
metadata: DownloadFormatMetadata { skip_events: None },
|
||||
},
|
||||
));
|
||||
}
|
||||
|
|
|
|||
437
crunchy-cli-core/src/archive/filter.rs
Normal file
437
crunchy-cli-core/src/archive/filter.rs
Normal file
|
|
@ -0,0 +1,437 @@
|
|||
use crate::archive::command::Archive;
|
||||
use crate::utils::filter::{real_dedup_vec, Filter};
|
||||
use crate::utils::format::{Format, SingleFormat, SingleFormatCollection};
|
||||
use crate::utils::interactive_select::{check_for_duplicated_seasons, get_duplicated_seasons};
|
||||
use crate::utils::parse::{fract, UrlFilter};
|
||||
use anyhow::Result;
|
||||
use crunchyroll_rs::{Concert, Episode, Locale, Movie, MovieListing, MusicVideo, Season, Series};
|
||||
use log::{info, warn};
|
||||
use std::collections::{BTreeMap, HashMap};
|
||||
|
||||
enum Visited {
|
||||
Series,
|
||||
Season,
|
||||
None,
|
||||
}
|
||||
|
||||
pub(crate) struct ArchiveFilter {
|
||||
url_filter: UrlFilter,
|
||||
archive: Archive,
|
||||
interactive_input: bool,
|
||||
skip_special: bool,
|
||||
season_episodes: HashMap<String, Vec<Episode>>,
|
||||
season_subtitles_missing: Vec<u32>,
|
||||
season_sorting: Vec<String>,
|
||||
visited: Visited,
|
||||
}
|
||||
|
||||
impl ArchiveFilter {
|
||||
pub(crate) fn new(
|
||||
url_filter: UrlFilter,
|
||||
archive: Archive,
|
||||
interactive_input: bool,
|
||||
skip_special: bool,
|
||||
) -> Self {
|
||||
Self {
|
||||
url_filter,
|
||||
archive,
|
||||
interactive_input,
|
||||
skip_special,
|
||||
season_episodes: HashMap::new(),
|
||||
season_subtitles_missing: vec![],
|
||||
season_sorting: vec![],
|
||||
visited: Visited::None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Filter for ArchiveFilter {
|
||||
type T = Vec<SingleFormat>;
|
||||
type Output = SingleFormatCollection;
|
||||
|
||||
async fn visit_series(&mut self, series: Series) -> Result<Vec<Season>> {
|
||||
// `series.audio_locales` isn't always populated b/c of crunchyrolls api. so check if the
|
||||
// audio is matching only if the field is populated
|
||||
if !series.audio_locales.is_empty() {
|
||||
let missing_audio = missing_locales(&series.audio_locales, &self.archive.audio);
|
||||
if !missing_audio.is_empty() {
|
||||
warn!(
|
||||
"Series {} is not available with {} audio",
|
||||
series.title,
|
||||
missing_audio
|
||||
.into_iter()
|
||||
.map(|l| l.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
let missing_subtitle =
|
||||
missing_locales(&series.subtitle_locales, &self.archive.subtitle);
|
||||
if !missing_subtitle.is_empty() {
|
||||
warn!(
|
||||
"Series {} is not available with {} subtitles",
|
||||
series.title,
|
||||
missing_subtitle
|
||||
.into_iter()
|
||||
.map(|l| l.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
self.visited = Visited::Series
|
||||
}
|
||||
|
||||
let mut seasons = series.seasons().await?;
|
||||
let mut remove_ids = vec![];
|
||||
for season in seasons.iter_mut() {
|
||||
if !self.url_filter.is_season_valid(season.season_number)
|
||||
|| (!season
|
||||
.audio_locales
|
||||
.iter()
|
||||
.any(|l| self.archive.audio.contains(l))
|
||||
&& !season
|
||||
.available_versions()
|
||||
.await?
|
||||
.iter()
|
||||
.any(|l| self.archive.audio.contains(l)))
|
||||
{
|
||||
remove_ids.push(season.id.clone());
|
||||
}
|
||||
}
|
||||
|
||||
seasons.retain(|s| !remove_ids.contains(&s.id));
|
||||
|
||||
let duplicated_seasons = get_duplicated_seasons(&seasons);
|
||||
if !duplicated_seasons.is_empty() {
|
||||
if self.interactive_input {
|
||||
check_for_duplicated_seasons(&mut seasons);
|
||||
} else {
|
||||
info!(
|
||||
"Found duplicated seasons: {}",
|
||||
duplicated_seasons
|
||||
.iter()
|
||||
.map(|d| d.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Ok(seasons)
|
||||
}
|
||||
|
||||
async fn visit_season(&mut self, mut season: Season) -> Result<Vec<Episode>> {
|
||||
if !self.url_filter.is_season_valid(season.season_number) {
|
||||
return Ok(vec![]);
|
||||
}
|
||||
|
||||
let mut seasons = season.version(self.archive.audio.clone()).await?;
|
||||
if self
|
||||
.archive
|
||||
.audio
|
||||
.iter()
|
||||
.any(|l| season.audio_locales.contains(l))
|
||||
{
|
||||
seasons.insert(0, season.clone());
|
||||
}
|
||||
|
||||
if !matches!(self.visited, Visited::Series) {
|
||||
let mut audio_locales: Vec<Locale> = seasons
|
||||
.iter()
|
||||
.flat_map(|s| s.audio_locales.clone())
|
||||
.collect();
|
||||
real_dedup_vec(&mut audio_locales);
|
||||
let missing_audio = missing_locales(&audio_locales, &self.archive.audio);
|
||||
if !missing_audio.is_empty() {
|
||||
warn!(
|
||||
"Season {} is not available with {} audio",
|
||||
season.season_number,
|
||||
missing_audio
|
||||
.into_iter()
|
||||
.map(|l| l.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
|
||||
let subtitle_locales: Vec<Locale> = seasons
|
||||
.iter()
|
||||
.flat_map(|s| s.subtitle_locales.clone())
|
||||
.collect();
|
||||
let missing_subtitle = missing_locales(&subtitle_locales, &self.archive.subtitle);
|
||||
if !missing_subtitle.is_empty() {
|
||||
warn!(
|
||||
"Season {} is not available with {} subtitles",
|
||||
season.season_number,
|
||||
missing_subtitle
|
||||
.into_iter()
|
||||
.map(|l| l.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
self.visited = Visited::Season
|
||||
}
|
||||
|
||||
let mut episodes = vec![];
|
||||
for season in seasons {
|
||||
self.season_sorting.push(season.id.clone());
|
||||
let season_locale = if season.audio_locales.len() < 2 {
|
||||
Some(
|
||||
season
|
||||
.audio_locales
|
||||
.first()
|
||||
.cloned()
|
||||
.unwrap_or(Locale::ja_JP),
|
||||
)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
let mut eps = season.episodes().await?;
|
||||
let before_len = eps.len();
|
||||
|
||||
for mut ep in eps.clone() {
|
||||
if let Some(l) = &season_locale {
|
||||
if &ep.audio_locale == l {
|
||||
continue;
|
||||
}
|
||||
eps.remove(eps.iter().position(|p| p.id == ep.id).unwrap());
|
||||
} else {
|
||||
let mut requested_locales = self.archive.audio.clone();
|
||||
if let Some(idx) = requested_locales.iter().position(|p| p == &ep.audio_locale)
|
||||
{
|
||||
requested_locales.remove(idx);
|
||||
} else {
|
||||
eps.remove(eps.iter().position(|p| p.id == ep.id).unwrap());
|
||||
}
|
||||
eps.extend(ep.version(self.archive.audio.clone()).await?);
|
||||
}
|
||||
}
|
||||
if eps.len() < before_len {
|
||||
if eps.is_empty() {
|
||||
if matches!(self.visited, Visited::Series) {
|
||||
warn!(
|
||||
"Season {} is not available with {} audio",
|
||||
season.season_number,
|
||||
season_locale.unwrap_or(Locale::ja_JP)
|
||||
)
|
||||
}
|
||||
} else {
|
||||
let last_episode = eps.last().unwrap();
|
||||
warn!(
|
||||
"Season {} is only available with {} audio until episode {} ({})",
|
||||
season.season_number,
|
||||
season_locale.unwrap_or(Locale::ja_JP),
|
||||
last_episode.sequence_number,
|
||||
last_episode.title
|
||||
)
|
||||
}
|
||||
}
|
||||
episodes.extend(eps)
|
||||
}
|
||||
|
||||
if Format::has_relative_fmt(&self.archive.output) {
|
||||
for episode in episodes.iter() {
|
||||
self.season_episodes
|
||||
.entry(episode.season_id.clone())
|
||||
.or_default()
|
||||
.push(episode.clone())
|
||||
}
|
||||
}
|
||||
|
||||
Ok(episodes)
|
||||
}
|
||||
|
||||
async fn visit_episode(&mut self, mut episode: Episode) -> Result<Option<Self::T>> {
|
||||
if !self
|
||||
.url_filter
|
||||
.is_episode_valid(episode.sequence_number, episode.season_number)
|
||||
{
|
||||
return Ok(None);
|
||||
}
|
||||
|
||||
// skip the episode if it's a special
|
||||
if self.skip_special
|
||||
&& (episode.sequence_number == 0.0 || episode.sequence_number.fract() != 0.0)
|
||||
{
|
||||
return Ok(None);
|
||||
}
|
||||
|
||||
let mut episodes = vec![];
|
||||
if !matches!(self.visited, Visited::Series) && !matches!(self.visited, Visited::Season) {
|
||||
if self.archive.audio.contains(&episode.audio_locale) {
|
||||
episodes.push((episode.clone(), episode.subtitle_locales.clone()))
|
||||
}
|
||||
episodes.extend(
|
||||
episode
|
||||
.version(self.archive.audio.clone())
|
||||
.await?
|
||||
.into_iter()
|
||||
.map(|e| (e.clone(), e.subtitle_locales.clone())),
|
||||
);
|
||||
let audio_locales: Vec<Locale> = episodes
|
||||
.iter()
|
||||
.map(|(e, _)| e.audio_locale.clone())
|
||||
.collect();
|
||||
let missing_audio = missing_locales(&audio_locales, &self.archive.audio);
|
||||
if !missing_audio.is_empty() {
|
||||
warn!(
|
||||
"Episode {} is not available with {} audio",
|
||||
episode.sequence_number,
|
||||
missing_audio
|
||||
.into_iter()
|
||||
.map(|l| l.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
|
||||
let mut subtitle_locales: Vec<Locale> =
|
||||
episodes.iter().flat_map(|(_, s)| s.clone()).collect();
|
||||
real_dedup_vec(&mut subtitle_locales);
|
||||
let missing_subtitles = missing_locales(&subtitle_locales, &self.archive.subtitle);
|
||||
if !missing_subtitles.is_empty()
|
||||
&& !self
|
||||
.season_subtitles_missing
|
||||
.contains(&episode.season_number)
|
||||
{
|
||||
warn!(
|
||||
"Episode {} is not available with {} subtitles",
|
||||
episode.sequence_number,
|
||||
missing_subtitles
|
||||
.into_iter()
|
||||
.map(|l| l.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
);
|
||||
self.season_subtitles_missing.push(episode.season_number)
|
||||
}
|
||||
} else {
|
||||
episodes.push((episode.clone(), episode.subtitle_locales.clone()))
|
||||
}
|
||||
|
||||
let mut relative_episode_number = None;
|
||||
let mut relative_sequence_number = None;
|
||||
// get the relative episode number. only done if the output string has the pattern to include
|
||||
// the relative episode number as this requires some extra fetching
|
||||
if Format::has_relative_fmt(&self.archive.output) {
|
||||
let season_eps = match self.season_episodes.get(&episode.season_id) {
|
||||
Some(eps) => eps,
|
||||
None => {
|
||||
self.season_episodes.insert(
|
||||
episode.season_id.clone(),
|
||||
episode.season().await?.episodes().await?,
|
||||
);
|
||||
self.season_episodes.get(&episode.season_id).unwrap()
|
||||
}
|
||||
};
|
||||
let mut non_integer_sequence_number_count = 0;
|
||||
for (i, ep) in season_eps.iter().enumerate() {
|
||||
if ep.sequence_number.fract() != 0.0 || ep.sequence_number == 0.0 {
|
||||
non_integer_sequence_number_count += 1;
|
||||
}
|
||||
if ep.id == episode.id {
|
||||
relative_episode_number = Some(i + 1);
|
||||
relative_sequence_number = Some(
|
||||
(i + 1 - non_integer_sequence_number_count) as f32
|
||||
+ fract(ep.sequence_number),
|
||||
);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if relative_episode_number.is_none() || relative_sequence_number.is_none() {
|
||||
warn!(
|
||||
"Failed to get relative episode number for episode {} ({}) of {} season {}",
|
||||
episode.sequence_number,
|
||||
episode.title,
|
||||
episode.series_title,
|
||||
episode.season_number,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Ok(Some(
|
||||
episodes
|
||||
.into_iter()
|
||||
.map(|(e, s)| {
|
||||
SingleFormat::new_from_episode(
|
||||
e,
|
||||
s,
|
||||
relative_episode_number.map(|n| n as u32),
|
||||
relative_sequence_number,
|
||||
)
|
||||
})
|
||||
.collect(),
|
||||
))
|
||||
}
|
||||
|
||||
async fn visit_movie_listing(&mut self, movie_listing: MovieListing) -> Result<Vec<Movie>> {
|
||||
Ok(movie_listing.movies().await?)
|
||||
}
|
||||
|
||||
async fn visit_movie(&mut self, movie: Movie) -> Result<Option<Self::T>> {
|
||||
Ok(Some(vec![SingleFormat::new_from_movie(movie, vec![])]))
|
||||
}
|
||||
|
||||
async fn visit_music_video(&mut self, music_video: MusicVideo) -> Result<Option<Self::T>> {
|
||||
Ok(Some(vec![SingleFormat::new_from_music_video(music_video)]))
|
||||
}
|
||||
|
||||
async fn visit_concert(&mut self, concert: Concert) -> Result<Option<Self::T>> {
|
||||
Ok(Some(vec![SingleFormat::new_from_concert(concert)]))
|
||||
}
|
||||
|
||||
async fn finish(self, input: Vec<Self::T>) -> Result<Self::Output> {
|
||||
let flatten_input: Self::T = input.into_iter().flatten().collect();
|
||||
|
||||
let mut single_format_collection = SingleFormatCollection::new();
|
||||
|
||||
let mut pre_sorted: BTreeMap<String, Self::T> = BTreeMap::new();
|
||||
for data in flatten_input {
|
||||
pre_sorted
|
||||
.entry(data.identifier.clone())
|
||||
.or_insert(vec![])
|
||||
.push(data)
|
||||
}
|
||||
|
||||
let mut sorted: Vec<(String, Self::T)> = pre_sorted.into_iter().collect();
|
||||
sorted.sort_by(|(_, a), (_, b)| {
|
||||
self.season_sorting
|
||||
.iter()
|
||||
.position(|p| p == &a.first().unwrap().season_id)
|
||||
.unwrap()
|
||||
.cmp(
|
||||
&self
|
||||
.season_sorting
|
||||
.iter()
|
||||
.position(|p| p == &b.first().unwrap().season_id)
|
||||
.unwrap(),
|
||||
)
|
||||
});
|
||||
|
||||
for (_, mut data) in sorted {
|
||||
data.sort_by(|a, b| {
|
||||
self.archive
|
||||
.audio
|
||||
.iter()
|
||||
.position(|p| p == &a.audio)
|
||||
.unwrap_or(usize::MAX)
|
||||
.cmp(
|
||||
&self
|
||||
.archive
|
||||
.audio
|
||||
.iter()
|
||||
.position(|p| p == &b.audio)
|
||||
.unwrap_or(usize::MAX),
|
||||
)
|
||||
});
|
||||
single_format_collection.add_single_formats(data)
|
||||
}
|
||||
|
||||
Ok(single_format_collection)
|
||||
}
|
||||
}
|
||||
|
||||
fn missing_locales<'a>(available: &[Locale], searched: &'a [Locale]) -> Vec<&'a Locale> {
|
||||
searched.iter().filter(|p| !available.contains(p)).collect()
|
||||
}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
mod command;
|
||||
mod filter;
|
||||
|
||||
pub use command::Archive;
|
||||
|
|
|
|||
|
|
@ -1,19 +1,20 @@
|
|||
use crate::download::filter::DownloadFilter;
|
||||
use crate::utils::context::Context;
|
||||
use crate::utils::download::{DownloadBuilder, DownloadFormat, DownloadFormatMetadata};
|
||||
use crate::utils::ffmpeg::{FFmpegPreset, SOFTSUB_CONTAINERS};
|
||||
use crate::utils::filter::{Filter, FilterMediaScope};
|
||||
use crate::utils::filter::Filter;
|
||||
use crate::utils::format::{Format, SingleFormat};
|
||||
use crate::utils::locale::{resolve_locales, LanguageTagging};
|
||||
use crate::utils::log::progress;
|
||||
use crate::utils::os::{free_file, has_ffmpeg, is_special_file};
|
||||
use crate::utils::parse::parse_url;
|
||||
use crate::utils::video::stream_data_from_stream;
|
||||
use crate::utils::video::variant_data_from_stream;
|
||||
use crate::Execute;
|
||||
use anyhow::bail;
|
||||
use anyhow::Result;
|
||||
use crunchyroll_rs::media::Resolution;
|
||||
use crunchyroll_rs::Locale;
|
||||
use log::{debug, error, warn};
|
||||
use log::{debug, warn};
|
||||
use std::collections::HashMap;
|
||||
use std::path::Path;
|
||||
|
||||
|
|
@ -186,6 +187,15 @@ impl Execute for Download {
|
|||
}
|
||||
}
|
||||
|
||||
if self.output.contains("{resolution}")
|
||||
|| self
|
||||
.output_specials
|
||||
.as_ref()
|
||||
.map_or(false, |os| os.contains("{resolution}"))
|
||||
{
|
||||
warn!("The '{{resolution}}' format option is deprecated and will be removed in a future version. Please use '{{width}}' and '{{height}}' instead")
|
||||
}
|
||||
|
||||
if let Some(language_tagging) = &self.language_tagging {
|
||||
self.audio = resolve_locales(&[self.audio.clone()]).remove(0);
|
||||
self.subtitle = self
|
||||
|
|
@ -211,10 +221,6 @@ impl Execute for Download {
|
|||
}
|
||||
|
||||
async fn execute(self, ctx: Context) -> Result<()> {
|
||||
if !ctx.crunchy.premium().await {
|
||||
warn!("You may not be able to download all requested videos when logging in anonymously or using a non-premium account")
|
||||
}
|
||||
|
||||
let mut parsed_urls = vec![];
|
||||
|
||||
let output_supports_softsubs = SOFTSUB_CONTAINERS.contains(
|
||||
|
|
@ -249,59 +255,10 @@ impl Execute for Download {
|
|||
|
||||
for (i, (media_collection, url_filter)) in parsed_urls.into_iter().enumerate() {
|
||||
let progress_handler = progress!("Fetching series details");
|
||||
let single_format_collection = Filter::new(
|
||||
url_filter,
|
||||
vec![self.audio.clone()],
|
||||
self.subtitle.as_ref().map_or(vec![], |s| vec![s.clone()]),
|
||||
|scope, locales| {
|
||||
match scope {
|
||||
FilterMediaScope::Series(series) => bail!("Series {} is not available with {} audio", series.title, locales[0]),
|
||||
FilterMediaScope::Season(season) => {
|
||||
error!("Season {} is not available with {} audio", season.season_number, locales[0]);
|
||||
Ok(false)
|
||||
}
|
||||
FilterMediaScope::Episode(episodes) => {
|
||||
if episodes.len() == 1 {
|
||||
warn!("Episode {} of season {} is not available with {} audio", episodes[0].sequence_number, episodes[0].season_title, locales[0])
|
||||
} else if episodes.len() == 2 {
|
||||
warn!("Season {} is only available with {} audio from episode {} to {}", episodes[0].season_number, locales[0], episodes[0].sequence_number, episodes[1].sequence_number)
|
||||
} else {
|
||||
unimplemented!()
|
||||
}
|
||||
Ok(false)
|
||||
}
|
||||
}
|
||||
},
|
||||
|scope, locales| {
|
||||
match scope {
|
||||
FilterMediaScope::Series(series) => bail!("Series {} is not available with {} subtitles", series.title, locales[0]),
|
||||
FilterMediaScope::Season(season) => {
|
||||
warn!("Season {} is not available with {} subtitles", season.season_number, locales[0]);
|
||||
Ok(false)
|
||||
},
|
||||
FilterMediaScope::Episode(episodes) => {
|
||||
if episodes.len() == 1 {
|
||||
warn!("Episode {} of season {} is not available with {} subtitles", episodes[0].sequence_number, episodes[0].season_title, locales[0])
|
||||
} else if episodes.len() == 2 {
|
||||
warn!("Season {} is only available with {} subtitles from episode {} to {}", episodes[0].season_number, locales[0], episodes[0].sequence_number, episodes[1].sequence_number)
|
||||
} else {
|
||||
unimplemented!()
|
||||
}
|
||||
Ok(false)
|
||||
}
|
||||
}
|
||||
},
|
||||
|season| {
|
||||
warn!("Skipping premium episodes in season {season}");
|
||||
Ok(())
|
||||
},
|
||||
Format::has_relative_fmt(&self.output),
|
||||
!self.yes,
|
||||
self.skip_specials,
|
||||
ctx.crunchy.premium().await,
|
||||
)
|
||||
.visit(media_collection)
|
||||
.await?;
|
||||
let single_format_collection =
|
||||
DownloadFilter::new(url_filter, self.clone(), !self.yes, self.skip_specials)
|
||||
.visit(media_collection)
|
||||
.await?;
|
||||
|
||||
if single_format_collection.is_empty() {
|
||||
progress_handler.stop(format!("Skipping url {} (no matching videos found)", i + 1));
|
||||
|
|
@ -394,7 +351,7 @@ async fn get_format(
|
|||
try_peer_hardsubs: bool,
|
||||
) -> Result<(DownloadFormat, Format)> {
|
||||
let stream = single_format.stream().await?;
|
||||
let Some((video, audio, contains_hardsub)) = stream_data_from_stream(
|
||||
let Some((video, audio, contains_hardsub)) = variant_data_from_stream(
|
||||
&stream,
|
||||
&download.resolution,
|
||||
if try_peer_hardsubs {
|
||||
|
|
@ -427,20 +384,12 @@ async fn get_format(
|
|||
let subtitle = if contains_hardsub {
|
||||
None
|
||||
} else if let Some(subtitle_locale) = &download.subtitle {
|
||||
if download.audio == Locale::ja_JP {
|
||||
stream
|
||||
.subtitles
|
||||
.get(subtitle_locale)
|
||||
// use closed captions as fallback if no actual subtitles are found
|
||||
.or_else(|| stream.captions.get(subtitle_locale))
|
||||
.cloned()
|
||||
} else {
|
||||
stream
|
||||
.captions
|
||||
.get(subtitle_locale)
|
||||
.or_else(|| stream.subtitles.get(subtitle_locale))
|
||||
.cloned()
|
||||
}
|
||||
stream
|
||||
.subtitles
|
||||
.get(subtitle_locale)
|
||||
.cloned()
|
||||
// use closed captions as fallback if no actual subtitles are found
|
||||
.or_else(|| stream.captions.get(subtitle_locale).cloned())
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
|
@ -451,7 +400,7 @@ async fn get_format(
|
|||
subtitles: subtitle.clone().map_or(vec![], |s| {
|
||||
vec![(
|
||||
s,
|
||||
single_format.audio != Locale::ja_JP && stream.subtitles.len() == 1,
|
||||
single_format.audio == Locale::ja_JP || stream.subtitles.len() > 1,
|
||||
)]
|
||||
}),
|
||||
metadata: DownloadFormatMetadata {
|
||||
|
|
@ -468,7 +417,7 @@ async fn get_format(
|
|||
subtitle.map_or(vec![], |s| {
|
||||
vec![(
|
||||
s,
|
||||
single_format.audio != Locale::ja_JP && stream.subtitles.len() == 1,
|
||||
single_format.audio == Locale::ja_JP || stream.subtitles.len() > 1,
|
||||
)]
|
||||
}),
|
||||
)]);
|
||||
|
|
@ -477,7 +426,5 @@ async fn get_format(
|
|||
subs.push(download.subtitle.clone().unwrap())
|
||||
}
|
||||
|
||||
stream.invalidate().await?;
|
||||
|
||||
Ok((download_format, format))
|
||||
}
|
||||
|
|
|
|||
283
crunchy-cli-core/src/download/filter.rs
Normal file
283
crunchy-cli-core/src/download/filter.rs
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
use crate::download::Download;
|
||||
use crate::utils::filter::Filter;
|
||||
use crate::utils::format::{Format, SingleFormat, SingleFormatCollection};
|
||||
use crate::utils::interactive_select::{check_for_duplicated_seasons, get_duplicated_seasons};
|
||||
use crate::utils::parse::{fract, UrlFilter};
|
||||
use anyhow::{bail, Result};
|
||||
use crunchyroll_rs::{Concert, Episode, Movie, MovieListing, MusicVideo, Season, Series};
|
||||
use log::{error, info, warn};
|
||||
use std::collections::HashMap;
|
||||
|
||||
pub(crate) struct DownloadFilter {
|
||||
url_filter: UrlFilter,
|
||||
download: Download,
|
||||
interactive_input: bool,
|
||||
skip_special: bool,
|
||||
season_episodes: HashMap<u32, Vec<Episode>>,
|
||||
season_subtitles_missing: Vec<u32>,
|
||||
season_visited: bool,
|
||||
}
|
||||
|
||||
impl DownloadFilter {
|
||||
pub(crate) fn new(
|
||||
url_filter: UrlFilter,
|
||||
download: Download,
|
||||
interactive_input: bool,
|
||||
skip_special: bool,
|
||||
) -> Self {
|
||||
Self {
|
||||
url_filter,
|
||||
download,
|
||||
interactive_input,
|
||||
skip_special,
|
||||
season_episodes: HashMap::new(),
|
||||
season_subtitles_missing: vec![],
|
||||
season_visited: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Filter for DownloadFilter {
|
||||
type T = SingleFormat;
|
||||
type Output = SingleFormatCollection;
|
||||
|
||||
async fn visit_series(&mut self, series: Series) -> Result<Vec<Season>> {
|
||||
// `series.audio_locales` isn't always populated b/c of crunchyrolls api. so check if the
|
||||
// audio is matching only if the field is populated
|
||||
if !series.audio_locales.is_empty() && !series.audio_locales.contains(&self.download.audio)
|
||||
{
|
||||
error!(
|
||||
"Series {} is not available with {} audio",
|
||||
series.title, self.download.audio
|
||||
);
|
||||
return Ok(vec![]);
|
||||
}
|
||||
|
||||
let mut seasons = vec![];
|
||||
for mut season in series.seasons().await? {
|
||||
if !self.url_filter.is_season_valid(season.season_number) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if !season
|
||||
.audio_locales
|
||||
.iter()
|
||||
.any(|l| l == &self.download.audio)
|
||||
{
|
||||
if season
|
||||
.available_versions()
|
||||
.await?
|
||||
.iter()
|
||||
.any(|l| l == &self.download.audio)
|
||||
{
|
||||
season = season
|
||||
.version(vec![self.download.audio.clone()])
|
||||
.await?
|
||||
.remove(0)
|
||||
} else {
|
||||
error!(
|
||||
"Season {} - '{}' is not available with {} audio",
|
||||
season.season_number,
|
||||
season.title,
|
||||
self.download.audio.clone(),
|
||||
);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
seasons.push(season)
|
||||
}
|
||||
|
||||
let duplicated_seasons = get_duplicated_seasons(&seasons);
|
||||
if !duplicated_seasons.is_empty() {
|
||||
if self.interactive_input {
|
||||
check_for_duplicated_seasons(&mut seasons);
|
||||
} else {
|
||||
info!(
|
||||
"Found duplicated seasons: {}",
|
||||
duplicated_seasons
|
||||
.iter()
|
||||
.map(|d| d.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Ok(seasons)
|
||||
}
|
||||
|
||||
async fn visit_season(&mut self, season: Season) -> Result<Vec<Episode>> {
|
||||
self.season_visited = true;
|
||||
|
||||
let mut episodes = season.episodes().await?;
|
||||
|
||||
if Format::has_relative_fmt(&self.download.output) {
|
||||
for episode in episodes.iter() {
|
||||
self.season_episodes
|
||||
.entry(episode.season_number)
|
||||
.or_default()
|
||||
.push(episode.clone())
|
||||
}
|
||||
}
|
||||
|
||||
episodes.retain(|e| {
|
||||
self.url_filter
|
||||
.is_episode_valid(e.sequence_number, season.season_number)
|
||||
});
|
||||
|
||||
Ok(episodes)
|
||||
}
|
||||
|
||||
async fn visit_episode(&mut self, mut episode: Episode) -> Result<Option<Self::T>> {
|
||||
if !self
|
||||
.url_filter
|
||||
.is_episode_valid(episode.sequence_number, episode.season_number)
|
||||
{
|
||||
return Ok(None);
|
||||
}
|
||||
|
||||
// skip the episode if it's a special
|
||||
if self.skip_special
|
||||
&& (episode.sequence_number == 0.0 || episode.sequence_number.fract() != 0.0)
|
||||
{
|
||||
return Ok(None);
|
||||
}
|
||||
|
||||
// check if the audio locale is correct.
|
||||
// should only be incorrect if the console input was a episode url. otherwise
|
||||
// `DownloadFilter::visit_season` returns the correct episodes with matching audio
|
||||
if episode.audio_locale != self.download.audio {
|
||||
// check if any other version (same episode, other language) of this episode is available
|
||||
// with the requested audio. if not, return an error
|
||||
if !episode
|
||||
.available_versions()
|
||||
.await?
|
||||
.contains(&self.download.audio)
|
||||
{
|
||||
let error_message = format!(
|
||||
"Episode {} ({}) of {} season {} is not available with {} audio",
|
||||
episode.sequence_number,
|
||||
episode.title,
|
||||
episode.series_title,
|
||||
episode.season_number,
|
||||
self.download.audio
|
||||
);
|
||||
// sometimes a series randomly has episode in an other language. if this is the case,
|
||||
// only error if the input url was a episode url
|
||||
if self.season_visited {
|
||||
warn!("{}", error_message);
|
||||
return Ok(None);
|
||||
} else {
|
||||
bail!("{}", error_message)
|
||||
}
|
||||
}
|
||||
// overwrite the current episode with the other version episode
|
||||
episode = episode
|
||||
.version(vec![self.download.audio.clone()])
|
||||
.await?
|
||||
.remove(0)
|
||||
}
|
||||
|
||||
// check if the subtitles are supported
|
||||
if let Some(subtitle_locale) = &self.download.subtitle {
|
||||
if !episode.subtitle_locales.contains(subtitle_locale) {
|
||||
// if the episode doesn't have the requested subtitles, print a error. to print this
|
||||
// error only once per season, it's checked if an error got printed before by looking
|
||||
// up if the season id is present in `self.season_subtitles_missing`. if not, print
|
||||
// the error and add the season id to `self.season_subtitles_missing`. if it is
|
||||
// present, skip the error printing
|
||||
if !self
|
||||
.season_subtitles_missing
|
||||
.contains(&episode.season_number)
|
||||
{
|
||||
self.season_subtitles_missing.push(episode.season_number);
|
||||
error!(
|
||||
"{} season {} is not available with {} subtitles",
|
||||
episode.series_title, episode.season_number, subtitle_locale
|
||||
);
|
||||
}
|
||||
return Ok(None);
|
||||
}
|
||||
}
|
||||
|
||||
let mut relative_episode_number = None;
|
||||
let mut relative_sequence_number = None;
|
||||
// get the relative episode number. only done if the output string has the pattern to include
|
||||
// the relative episode number as this requires some extra fetching
|
||||
if Format::has_relative_fmt(&self.download.output) {
|
||||
let season_eps = match self.season_episodes.get(&episode.season_number) {
|
||||
Some(eps) => eps,
|
||||
None => {
|
||||
self.season_episodes.insert(
|
||||
episode.season_number,
|
||||
episode.season().await?.episodes().await?,
|
||||
);
|
||||
self.season_episodes.get(&episode.season_number).unwrap()
|
||||
}
|
||||
};
|
||||
let mut non_integer_sequence_number_count = 0;
|
||||
for (i, ep) in season_eps.iter().enumerate() {
|
||||
if ep.sequence_number.fract() != 0.0 || ep.sequence_number == 0.0 {
|
||||
non_integer_sequence_number_count += 1;
|
||||
}
|
||||
if ep.id == episode.id {
|
||||
relative_episode_number = Some(i + 1);
|
||||
relative_sequence_number = Some(
|
||||
(i + 1 - non_integer_sequence_number_count) as f32
|
||||
+ fract(ep.sequence_number),
|
||||
);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if relative_episode_number.is_none() || relative_sequence_number.is_none() {
|
||||
warn!(
|
||||
"Failed to get relative episode number for episode {} ({}) of {} season {}",
|
||||
episode.sequence_number,
|
||||
episode.title,
|
||||
episode.series_title,
|
||||
episode.season_number,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Ok(Some(SingleFormat::new_from_episode(
|
||||
episode.clone(),
|
||||
self.download.subtitle.clone().map_or(vec![], |s| {
|
||||
if episode.subtitle_locales.contains(&s) {
|
||||
vec![s]
|
||||
} else {
|
||||
vec![]
|
||||
}
|
||||
}),
|
||||
relative_episode_number.map(|n| n as u32),
|
||||
relative_sequence_number,
|
||||
)))
|
||||
}
|
||||
|
||||
async fn visit_movie_listing(&mut self, movie_listing: MovieListing) -> Result<Vec<Movie>> {
|
||||
Ok(movie_listing.movies().await?)
|
||||
}
|
||||
|
||||
async fn visit_movie(&mut self, movie: Movie) -> Result<Option<Self::T>> {
|
||||
Ok(Some(SingleFormat::new_from_movie(movie, vec![])))
|
||||
}
|
||||
|
||||
async fn visit_music_video(&mut self, music_video: MusicVideo) -> Result<Option<Self::T>> {
|
||||
Ok(Some(SingleFormat::new_from_music_video(music_video)))
|
||||
}
|
||||
|
||||
async fn visit_concert(&mut self, concert: Concert) -> Result<Option<Self::T>> {
|
||||
Ok(Some(SingleFormat::new_from_concert(concert)))
|
||||
}
|
||||
|
||||
async fn finish(self, input: Vec<Self::T>) -> Result<Self::Output> {
|
||||
let mut single_format_collection = SingleFormatCollection::new();
|
||||
|
||||
for data in input {
|
||||
single_format_collection.add_single_formats(vec![data])
|
||||
}
|
||||
|
||||
Ok(single_format_collection)
|
||||
}
|
||||
}
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
mod command;
|
||||
mod filter;
|
||||
|
||||
pub use command::Download;
|
||||
|
|
|
|||
|
|
@ -184,29 +184,16 @@ pub async fn main(args: &[String]) {
|
|||
.unwrap_or_default()
|
||||
.starts_with(".crunchy-cli_")
|
||||
{
|
||||
if file.file_type().map_or(true, |ft| ft.is_file()) {
|
||||
let result = fs::remove_file(file.path());
|
||||
debug!(
|
||||
"Ctrl-c removed temporary file {} {}",
|
||||
file.path().to_string_lossy(),
|
||||
if result.is_ok() {
|
||||
"successfully"
|
||||
} else {
|
||||
"not successfully"
|
||||
}
|
||||
)
|
||||
} else {
|
||||
let result = fs::remove_dir_all(file.path());
|
||||
debug!(
|
||||
"Ctrl-c removed temporary directory {} {}",
|
||||
file.path().to_string_lossy(),
|
||||
if result.is_ok() {
|
||||
"successfully"
|
||||
} else {
|
||||
"not successfully"
|
||||
}
|
||||
)
|
||||
}
|
||||
let result = fs::remove_file(file.path());
|
||||
debug!(
|
||||
"Ctrl-c removed temporary file {} {}",
|
||||
file.path().to_string_lossy(),
|
||||
if result.is_ok() {
|
||||
"successfully"
|
||||
} else {
|
||||
"not successfully"
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -238,6 +225,8 @@ async fn execute_executor(executor: impl Execute, ctx: Context) {
|
|||
if let Some(crunchy_error) = err.downcast_mut::<Error>() {
|
||||
if let Error::Block { message, .. } = crunchy_error {
|
||||
*message = "Triggered Cloudflare bot protection. Try again later or use a VPN or proxy to spoof your location".to_string()
|
||||
} else if let Error::Request { message, .. } = crunchy_error {
|
||||
*message = "You've probably hit a rate limit. Try again later, generally after 10-20 minutes the rate limit is over and you can continue to use the cli".to_string()
|
||||
}
|
||||
|
||||
error!("An error occurred: {}", crunchy_error)
|
||||
|
|
@ -326,8 +315,9 @@ async fn crunchyroll_session(
|
|||
builder = builder.middleware(rate_limiter)
|
||||
}
|
||||
|
||||
let root_login_methods_count =
|
||||
cli.login_method.credentials.is_some() as u8 + cli.login_method.anonymous as u8;
|
||||
let root_login_methods_count = cli.login_method.credentials.is_some() as u8
|
||||
+ cli.login_method.etp_rt.is_some() as u8
|
||||
+ cli.login_method.anonymous as u8;
|
||||
|
||||
let progress_handler = progress!("Logging in");
|
||||
if root_login_methods_count == 0 {
|
||||
|
|
@ -337,28 +327,18 @@ async fn crunchyroll_session(
|
|||
if let Some((token_type, token)) = session.split_once(':') {
|
||||
match token_type {
|
||||
"refresh_token" => {
|
||||
return match builder.login_with_refresh_token(token).await {
|
||||
Ok(crunchy) => Ok(crunchy),
|
||||
Err(e) => {
|
||||
if let Error::Request { message, .. } = &e {
|
||||
if message.starts_with("invalid_grant") {
|
||||
bail!("The stored login is expired, please login again")
|
||||
}
|
||||
}
|
||||
Err(e.into())
|
||||
}
|
||||
}
|
||||
return Ok(builder.login_with_refresh_token(token).await?)
|
||||
}
|
||||
"etp_rt" => bail!("The stored login method (etp-rt) isn't supported anymore. Please login again using your credentials"),
|
||||
"etp_rt" => return Ok(builder.login_with_etp_rt(token).await?),
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
bail!("Could not read stored session ('{}')", session)
|
||||
}
|
||||
}
|
||||
bail!("Please use a login method ('--credentials' or '--anonymous')")
|
||||
bail!("Please use a login method ('--credentials', '--etp-rt' or '--anonymous')")
|
||||
} else if root_login_methods_count > 1 {
|
||||
bail!("Please use only one login method ('--credentials' or '--anonymous')")
|
||||
bail!("Please use only one login method ('--credentials', '--etp-rt' or '--anonymous')")
|
||||
}
|
||||
|
||||
let crunchy = if let Some(credentials) = &cli.login_method.credentials {
|
||||
|
|
@ -367,6 +347,8 @@ async fn crunchyroll_session(
|
|||
} else {
|
||||
bail!("Invalid credentials format. Please provide your credentials as email:password")
|
||||
}
|
||||
} else if let Some(etp_rt) = &cli.login_method.etp_rt {
|
||||
builder.login_with_etp_rt(etp_rt).await?
|
||||
} else if cli.login_method.anonymous {
|
||||
builder.login_anonymously().await?
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -25,7 +25,9 @@ impl Execute for Login {
|
|||
SessionToken::RefreshToken(refresh_token) => {
|
||||
fs::write(login_file_path, format!("refresh_token:{}", refresh_token))?
|
||||
}
|
||||
SessionToken::EtpRt(_) => bail!("Login with etp_rt isn't supported anymore. Please use your credentials to login"),
|
||||
SessionToken::EtpRt(etp_rt) => {
|
||||
fs::write(login_file_path, format!("etp_rt:{}", etp_rt))?
|
||||
}
|
||||
SessionToken::Anonymous => bail!("Anonymous login cannot be saved"),
|
||||
}
|
||||
|
||||
|
|
@ -45,6 +47,12 @@ pub struct LoginMethod {
|
|||
)]
|
||||
#[arg(global = true, long)]
|
||||
pub credentials: Option<String>,
|
||||
#[arg(help = "Login with the etp-rt cookie")]
|
||||
#[arg(
|
||||
long_help = "Login with the etp-rt cookie. This can be obtained when you login on crunchyroll.com and extract it from there"
|
||||
)]
|
||||
#[arg(global = true, long)]
|
||||
pub etp_rt: Option<String>,
|
||||
#[arg(help = "Login anonymously / without an account")]
|
||||
#[arg(global = true, long, default_value_t = false)]
|
||||
pub anonymous: bool,
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ use crunchyroll_rs::common::StreamExt;
|
|||
use crunchyroll_rs::search::QueryResults;
|
||||
use crunchyroll_rs::{Episode, Locale, MediaCollection, MovieListing, MusicVideo, Series};
|
||||
use log::warn;
|
||||
use std::sync::Arc;
|
||||
|
||||
#[derive(Debug, clap::Parser)]
|
||||
#[clap(about = "Search in videos")]
|
||||
|
|
@ -88,16 +87,11 @@ pub struct Search {
|
|||
/// concert.premium_only → If the concert is only available with Crunchyroll premium
|
||||
///
|
||||
/// stream.locale → Stream locale/language
|
||||
/// stream.dash_url → Stream url in DASH format. You need to set the `Authorization` header to `Bearer <account.token>` when requesting this url
|
||||
/// stream.is_drm → If `stream.dash_url` is DRM encrypted
|
||||
/// stream.dash_url → Stream url in DASH format
|
||||
/// stream.is_drm → If `stream.is_drm` is DRM encrypted
|
||||
///
|
||||
/// subtitle.locale → Subtitle locale/language
|
||||
/// subtitle.url → Url to the subtitle
|
||||
///
|
||||
/// account.token → Access token to make request to restricted endpoints. This token is only valid for a max. of 5 minutes
|
||||
/// account.id → Internal ID of the user account
|
||||
/// account.profile_name → Profile name of the account
|
||||
/// account.email → Email address of the account
|
||||
#[arg(short, long, verbatim_doc_comment)]
|
||||
#[arg(default_value = "S{{season.number}}E{{episode.number}} - {{episode.title}}")]
|
||||
output: String,
|
||||
|
|
@ -111,10 +105,6 @@ impl Execute for Search {
|
|||
warn!("Using `search` anonymously or with a non-premium account may return incomplete results")
|
||||
}
|
||||
|
||||
if self.output.contains("{{stream.is_drm}}") {
|
||||
warn!("The `{{{{stream.is_drm}}}}` option is deprecated as it isn't reliable anymore and will be removed soon")
|
||||
}
|
||||
|
||||
let input = if crunchyroll_rs::parse::parse_url(&self.input).is_some() {
|
||||
match parse_url(&ctx.crunchy, self.input.clone(), true).await {
|
||||
Ok(ok) => vec![ok],
|
||||
|
|
@ -153,14 +143,13 @@ impl Execute for Search {
|
|||
output
|
||||
};
|
||||
|
||||
let crunchy_arc = Arc::new(ctx.crunchy);
|
||||
for (media_collection, url_filter) in input {
|
||||
let filter_options = FilterOptions {
|
||||
audio: self.audio.clone(),
|
||||
url_filter,
|
||||
};
|
||||
|
||||
let format = Format::new(self.output.clone(), filter_options, crunchy_arc.clone())?;
|
||||
let format = Format::new(self.output.clone(), filter_options)?;
|
||||
println!("{}", format.parse(media_collection).await?);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,15 +2,13 @@ use crate::search::filter::FilterOptions;
|
|||
use anyhow::{bail, Result};
|
||||
use crunchyroll_rs::media::{Stream, Subtitle};
|
||||
use crunchyroll_rs::{
|
||||
Concert, Crunchyroll, Episode, Locale, MediaCollection, Movie, MovieListing, MusicVideo,
|
||||
Season, Series,
|
||||
Concert, Episode, Locale, MediaCollection, Movie, MovieListing, MusicVideo, Season, Series,
|
||||
};
|
||||
use regex::Regex;
|
||||
use serde::Serialize;
|
||||
use serde_json::{Map, Value};
|
||||
use std::collections::HashMap;
|
||||
use std::ops::Range;
|
||||
use std::sync::Arc;
|
||||
|
||||
#[derive(Default, Serialize)]
|
||||
struct FormatSeries {
|
||||
|
|
@ -173,7 +171,7 @@ impl From<&Stream> for FormatStream {
|
|||
Self {
|
||||
locale: value.audio_locale.clone(),
|
||||
dash_url: value.url.clone(),
|
||||
is_drm: false,
|
||||
is_drm: value.session.uses_stream_limits,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -193,27 +191,6 @@ impl From<&Subtitle> for FormatSubtitle {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Default, Serialize)]
|
||||
struct FormatAccount {
|
||||
pub token: String,
|
||||
pub id: String,
|
||||
pub profile_name: String,
|
||||
pub email: String,
|
||||
}
|
||||
|
||||
impl FormatAccount {
|
||||
pub async fn async_from(value: &Crunchyroll) -> Result<Self> {
|
||||
let account = value.account().await?;
|
||||
|
||||
Ok(Self {
|
||||
token: value.access_token().await,
|
||||
id: account.account_id,
|
||||
profile_name: account.profile_name,
|
||||
email: account.email,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
|
||||
enum Scope {
|
||||
Series,
|
||||
|
|
@ -225,7 +202,6 @@ enum Scope {
|
|||
Concert,
|
||||
Stream,
|
||||
Subtitle,
|
||||
Account,
|
||||
}
|
||||
|
||||
macro_rules! must_match_if_true {
|
||||
|
|
@ -241,20 +217,23 @@ macro_rules! must_match_if_true {
|
|||
};
|
||||
}
|
||||
|
||||
macro_rules! self_and_versions {
|
||||
($var:expr => $audio:expr) => {{
|
||||
let mut items = vec![$var.clone()];
|
||||
items.extend($var.clone().version($audio).await?);
|
||||
items
|
||||
}};
|
||||
}
|
||||
|
||||
pub struct Format {
|
||||
pattern: Vec<(Range<usize>, Scope, String)>,
|
||||
pattern_count: HashMap<Scope, u32>,
|
||||
input: String,
|
||||
filter_options: FilterOptions,
|
||||
crunchyroll: Arc<Crunchyroll>,
|
||||
}
|
||||
|
||||
impl Format {
|
||||
pub fn new(
|
||||
input: String,
|
||||
filter_options: FilterOptions,
|
||||
crunchyroll: Arc<Crunchyroll>,
|
||||
) -> Result<Self> {
|
||||
pub fn new(input: String, filter_options: FilterOptions) -> Result<Self> {
|
||||
let scope_regex = Regex::new(r"(?m)\{\{\s*(?P<scope>\w+)\.(?P<field>\w+)\s*}}").unwrap();
|
||||
let mut pattern = vec![];
|
||||
let mut pattern_count = HashMap::new();
|
||||
|
|
@ -281,7 +260,6 @@ impl Format {
|
|||
Scope::Concert => FormatConcert
|
||||
Scope::Stream => FormatStream
|
||||
Scope::Subtitle => FormatSubtitle
|
||||
Scope::Account => FormatAccount
|
||||
);
|
||||
|
||||
for capture in scope_regex.captures_iter(&input) {
|
||||
|
|
@ -299,7 +277,6 @@ impl Format {
|
|||
"concert" => Scope::Concert,
|
||||
"stream" => Scope::Stream,
|
||||
"subtitle" => Scope::Subtitle,
|
||||
"account" => Scope::Account,
|
||||
_ => bail!("'{}.{}' is not a valid keyword", scope, field),
|
||||
};
|
||||
|
||||
|
|
@ -325,7 +302,6 @@ impl Format {
|
|||
pattern_count,
|
||||
input,
|
||||
filter_options,
|
||||
crunchyroll,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -340,7 +316,6 @@ impl Format {
|
|||
Scope::Episode,
|
||||
Scope::Stream,
|
||||
Scope::Subtitle,
|
||||
Scope::Account,
|
||||
])?;
|
||||
|
||||
self.parse_series(media_collection).await
|
||||
|
|
@ -351,28 +326,17 @@ impl Format {
|
|||
Scope::Movie,
|
||||
Scope::Stream,
|
||||
Scope::Subtitle,
|
||||
Scope::Account,
|
||||
])?;
|
||||
|
||||
self.parse_movie_listing(media_collection).await
|
||||
}
|
||||
MediaCollection::MusicVideo(_) => {
|
||||
self.check_scopes(vec![
|
||||
Scope::MusicVideo,
|
||||
Scope::Stream,
|
||||
Scope::Subtitle,
|
||||
Scope::Account,
|
||||
])?;
|
||||
self.check_scopes(vec![Scope::MusicVideo, Scope::Stream, Scope::Subtitle])?;
|
||||
|
||||
self.parse_music_video(media_collection).await
|
||||
}
|
||||
MediaCollection::Concert(_) => {
|
||||
self.check_scopes(vec![
|
||||
Scope::Concert,
|
||||
Scope::Stream,
|
||||
Scope::Subtitle,
|
||||
Scope::Account,
|
||||
])?;
|
||||
self.check_scopes(vec![Scope::Concert, Scope::Stream, Scope::Subtitle])?;
|
||||
|
||||
self.parse_concert(media_collection).await
|
||||
}
|
||||
|
|
@ -385,7 +349,6 @@ impl Format {
|
|||
let episode_empty = self.check_pattern_count_empty(Scope::Episode);
|
||||
let stream_empty = self.check_pattern_count_empty(Scope::Stream)
|
||||
&& self.check_pattern_count_empty(Scope::Subtitle);
|
||||
let account_empty = self.check_pattern_count_empty(Scope::Account);
|
||||
|
||||
#[allow(clippy::type_complexity)]
|
||||
let mut tree: Vec<(Season, Vec<(Episode, Vec<Stream>)>)> = vec![];
|
||||
|
|
@ -413,15 +376,7 @@ impl Format {
|
|||
};
|
||||
let mut seasons = vec![];
|
||||
for season in tmp_seasons {
|
||||
seasons.push(season.clone());
|
||||
for version in season.versions {
|
||||
if season.id == version.id {
|
||||
continue;
|
||||
}
|
||||
if self.filter_options.audio.contains(&version.audio_locale) {
|
||||
seasons.push(version.season().await?)
|
||||
}
|
||||
}
|
||||
seasons.extend(self_and_versions!(season => self.filter_options.audio.clone()))
|
||||
}
|
||||
tree.extend(
|
||||
self.filter_options
|
||||
|
|
@ -435,15 +390,7 @@ impl Format {
|
|||
if !episode_empty || !stream_empty {
|
||||
match &media_collection {
|
||||
MediaCollection::Episode(episode) => {
|
||||
let mut episodes = vec![episode.clone()];
|
||||
for version in &episode.versions {
|
||||
if episode.id == version.id {
|
||||
continue;
|
||||
}
|
||||
if self.filter_options.audio.contains(&version.audio_locale) {
|
||||
episodes.push(version.episode().await?)
|
||||
}
|
||||
}
|
||||
let episodes = self_and_versions!(episode => self.filter_options.audio.clone());
|
||||
tree.push((
|
||||
Season::default(),
|
||||
episodes
|
||||
|
|
@ -472,9 +419,7 @@ impl Format {
|
|||
if !stream_empty {
|
||||
for (_, episodes) in tree.iter_mut() {
|
||||
for (episode, streams) in episodes {
|
||||
let stream = episode.stream_maybe_without_drm().await?;
|
||||
stream.clone().invalidate().await?;
|
||||
streams.push(stream)
|
||||
streams.push(episode.stream_maybe_without_drm().await?)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
@ -486,11 +431,6 @@ impl Format {
|
|||
}
|
||||
|
||||
let mut output = vec![];
|
||||
let account_map = if !account_empty {
|
||||
self.serializable_to_json_map(FormatAccount::async_from(&self.crunchyroll).await?)
|
||||
} else {
|
||||
Map::default()
|
||||
};
|
||||
let series_map = self.serializable_to_json_map(FormatSeries::from(&series));
|
||||
for (season, episodes) in tree {
|
||||
let season_map = self.serializable_to_json_map(FormatSeason::from(&season));
|
||||
|
|
@ -502,7 +442,6 @@ impl Format {
|
|||
output.push(
|
||||
self.replace_all(
|
||||
HashMap::from([
|
||||
(Scope::Account, &account_map),
|
||||
(Scope::Series, &series_map),
|
||||
(Scope::Season, &season_map),
|
||||
(Scope::Episode, &episode_map),
|
||||
|
|
|
|||
|
|
@ -1,31 +1,26 @@
|
|||
use crate::utils::ffmpeg::FFmpegPreset;
|
||||
use crate::utils::filter::real_dedup_vec;
|
||||
use crate::utils::fmt::format_time_delta;
|
||||
use crate::utils::log::progress;
|
||||
use crate::utils::os::{cache_dir, is_special_file, temp_directory, temp_named_pipe, tempfile};
|
||||
use crate::utils::rate_limit::RateLimiterService;
|
||||
use crate::utils::sync::{sync_audios, SyncAudio};
|
||||
use anyhow::{bail, Result};
|
||||
use chrono::{NaiveTime, TimeDelta};
|
||||
use chrono::NaiveTime;
|
||||
use crunchyroll_rs::media::{SkipEvents, SkipEventsEvent, StreamData, StreamSegment, Subtitle};
|
||||
use crunchyroll_rs::Locale;
|
||||
use indicatif::{ProgressBar, ProgressDrawTarget, ProgressFinish, ProgressStyle};
|
||||
use log::{debug, warn, LevelFilter};
|
||||
use regex::Regex;
|
||||
use reqwest::Client;
|
||||
use rsubs_lib::{SSA, VTT};
|
||||
use std::borrow::Borrow;
|
||||
use std::cmp::Ordering;
|
||||
use std::collections::{BTreeMap, HashMap};
|
||||
use std::io::Write;
|
||||
use std::ops::Add;
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::process::{Command, Stdio};
|
||||
use std::str::FromStr;
|
||||
use std::sync::Arc;
|
||||
use std::time::Duration;
|
||||
use std::{env, fs};
|
||||
use tempfile::TempPath;
|
||||
use time::Time;
|
||||
use tokio::io::{AsyncBufReadExt, AsyncReadExt, BufReader};
|
||||
use tokio::select;
|
||||
use tokio::sync::mpsc::unbounded_channel;
|
||||
|
|
@ -39,7 +34,6 @@ pub enum MergeBehavior {
|
|||
Video,
|
||||
Audio,
|
||||
Auto,
|
||||
Sync,
|
||||
}
|
||||
|
||||
impl MergeBehavior {
|
||||
|
|
@ -48,7 +42,6 @@ impl MergeBehavior {
|
|||
"video" => MergeBehavior::Video,
|
||||
"audio" => MergeBehavior::Audio,
|
||||
"auto" => MergeBehavior::Auto,
|
||||
"sync" => MergeBehavior::Sync,
|
||||
_ => return Err(format!("'{}' is not a valid merge behavior", s)),
|
||||
})
|
||||
}
|
||||
|
|
@ -66,8 +59,6 @@ pub struct DownloadBuilder {
|
|||
force_hardsub: bool,
|
||||
download_fonts: bool,
|
||||
no_closed_caption: bool,
|
||||
merge_sync_tolerance: Option<u32>,
|
||||
merge_sync_precision: Option<u32>,
|
||||
threads: usize,
|
||||
ffmpeg_threads: Option<usize>,
|
||||
audio_locale_output_map: HashMap<Locale, String>,
|
||||
|
|
@ -87,8 +78,6 @@ impl DownloadBuilder {
|
|||
force_hardsub: false,
|
||||
download_fonts: false,
|
||||
no_closed_caption: false,
|
||||
merge_sync_tolerance: None,
|
||||
merge_sync_precision: None,
|
||||
threads: num_cpus::get(),
|
||||
ffmpeg_threads: None,
|
||||
audio_locale_output_map: HashMap::new(),
|
||||
|
|
@ -110,9 +99,6 @@ impl DownloadBuilder {
|
|||
download_fonts: self.download_fonts,
|
||||
no_closed_caption: self.no_closed_caption,
|
||||
|
||||
merge_sync_tolerance: self.merge_sync_tolerance,
|
||||
merge_sync_precision: self.merge_sync_precision,
|
||||
|
||||
download_threads: self.threads,
|
||||
ffmpeg_threads: self.ffmpeg_threads,
|
||||
|
||||
|
|
@ -124,25 +110,10 @@ impl DownloadBuilder {
|
|||
}
|
||||
}
|
||||
|
||||
struct FFmpegVideoMeta {
|
||||
struct FFmpegMeta {
|
||||
path: TempPath,
|
||||
length: TimeDelta,
|
||||
start_time: Option<TimeDelta>,
|
||||
}
|
||||
|
||||
struct FFmpegAudioMeta {
|
||||
path: TempPath,
|
||||
locale: Locale,
|
||||
start_time: Option<TimeDelta>,
|
||||
video_idx: usize,
|
||||
}
|
||||
|
||||
struct FFmpegSubtitleMeta {
|
||||
path: TempPath,
|
||||
locale: Locale,
|
||||
cc: bool,
|
||||
start_time: Option<TimeDelta>,
|
||||
video_idx: usize,
|
||||
language: Locale,
|
||||
title: String,
|
||||
}
|
||||
|
||||
pub struct DownloadFormat {
|
||||
|
|
@ -170,9 +141,6 @@ pub struct Downloader {
|
|||
download_fonts: bool,
|
||||
no_closed_caption: bool,
|
||||
|
||||
merge_sync_tolerance: Option<u32>,
|
||||
merge_sync_precision: Option<u32>,
|
||||
|
||||
download_threads: usize,
|
||||
ffmpeg_threads: Option<usize>,
|
||||
|
||||
|
|
@ -234,13 +202,13 @@ impl Downloader {
|
|||
if let Some(subtitle_sort) = &self.subtitle_sort {
|
||||
format
|
||||
.subtitles
|
||||
.sort_by(|(a_subtitle, a_cc), (b_subtitle, b_cc)| {
|
||||
.sort_by(|(a_subtitle, a_not_cc), (b_subtitle, b_not_cc)| {
|
||||
let ordering = subtitle_sort
|
||||
.iter()
|
||||
.position(|l| l == &a_subtitle.locale)
|
||||
.cmp(&subtitle_sort.iter().position(|l| l == &b_subtitle.locale));
|
||||
if matches!(ordering, Ordering::Equal) {
|
||||
a_cc.cmp(b_cc).reverse()
|
||||
a_not_cc.cmp(b_not_cc).reverse()
|
||||
} else {
|
||||
ordering
|
||||
}
|
||||
|
|
@ -248,17 +216,13 @@ impl Downloader {
|
|||
}
|
||||
}
|
||||
|
||||
let mut video_offset = None;
|
||||
let mut audio_offsets = HashMap::new();
|
||||
let mut subtitle_offsets = HashMap::new();
|
||||
let mut raw_audios = vec![];
|
||||
let mut videos = vec![];
|
||||
let mut audios = vec![];
|
||||
let mut subtitles = vec![];
|
||||
let mut fonts = vec![];
|
||||
let mut chapters = None;
|
||||
let mut max_len = TimeDelta::min_value();
|
||||
let mut max_frames = 0;
|
||||
let mut max_len = NaiveTime::MIN;
|
||||
let mut max_frames = 0f64;
|
||||
let fmt_space = self
|
||||
.formats
|
||||
.iter()
|
||||
|
|
@ -270,218 +234,115 @@ impl Downloader {
|
|||
.max()
|
||||
.unwrap();
|
||||
|
||||
// downloads all audios
|
||||
for (i, format) in self.formats.iter().enumerate() {
|
||||
for (stream_data, locale) in &format.audios {
|
||||
let path = self
|
||||
.download_audio(
|
||||
stream_data,
|
||||
format!("{:<1$}", format!("Downloading {} audio", locale), fmt_space),
|
||||
)
|
||||
.await?;
|
||||
raw_audios.push(SyncAudio {
|
||||
format_id: i,
|
||||
path,
|
||||
locale: locale.clone(),
|
||||
sample_rate: stream_data.sampling_rate().unwrap(),
|
||||
video_idx: i,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
if self.formats.len() > 1 && self.merge_sync_tolerance.is_some() {
|
||||
let _progress_handler =
|
||||
progress!("Syncing video start times (this might take some time)");
|
||||
let mut offsets = sync_audios(
|
||||
&raw_audios,
|
||||
self.merge_sync_tolerance.unwrap(),
|
||||
self.merge_sync_precision.unwrap(),
|
||||
)?;
|
||||
drop(_progress_handler);
|
||||
|
||||
let mut offset_pre_checked = false;
|
||||
if let Some(tmp_offsets) = &offsets {
|
||||
let formats_with_offset: Vec<TimeDelta> = self
|
||||
.formats
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(i, f)| {
|
||||
len_from_segments(&f.video.0.segments())
|
||||
- tmp_offsets.get(&i).copied().unwrap_or_default()
|
||||
})
|
||||
.collect();
|
||||
let min = formats_with_offset.iter().min().unwrap();
|
||||
let max = formats_with_offset.iter().max().unwrap();
|
||||
|
||||
if max.num_seconds() - min.num_seconds() > 15 {
|
||||
warn!("Found difference of >15 seconds after sync, so the application was skipped");
|
||||
offsets = None;
|
||||
offset_pre_checked = true
|
||||
}
|
||||
}
|
||||
|
||||
if let Some(offsets) = offsets {
|
||||
let mut root_format_idx = 0;
|
||||
let mut root_format_offset = u64::MAX;
|
||||
|
||||
for (i, format) in self.formats.iter().enumerate() {
|
||||
let offset = offsets.get(&i).copied().unwrap_or_default();
|
||||
let format_offset = offset.num_milliseconds() as u64;
|
||||
if format_offset < root_format_offset {
|
||||
root_format_idx = i;
|
||||
root_format_offset = format_offset;
|
||||
}
|
||||
|
||||
for _ in &format.audios {
|
||||
if let Some(offset) = &offsets.get(&i) {
|
||||
audio_offsets.insert(i, **offset);
|
||||
}
|
||||
}
|
||||
for _ in &format.subtitles {
|
||||
if let Some(offset) = &offsets.get(&i) {
|
||||
subtitle_offsets.insert(i, **offset);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let mut root_format = self.formats.remove(root_format_idx);
|
||||
|
||||
let mut audio_prepend = vec![];
|
||||
let mut subtitle_prepend = vec![];
|
||||
let mut audio_append = vec![];
|
||||
let mut subtitle_append = vec![];
|
||||
for (i, format) in self.formats.into_iter().enumerate() {
|
||||
if i < root_format_idx {
|
||||
audio_prepend.extend(format.audios);
|
||||
subtitle_prepend.extend(format.subtitles);
|
||||
} else {
|
||||
audio_append.extend(format.audios);
|
||||
subtitle_append.extend(format.subtitles);
|
||||
}
|
||||
}
|
||||
root_format.audios.splice(0..0, audio_prepend);
|
||||
root_format.subtitles.splice(0..0, subtitle_prepend);
|
||||
root_format.audios.extend(audio_append);
|
||||
root_format.subtitles.extend(subtitle_append);
|
||||
|
||||
self.formats = vec![root_format];
|
||||
video_offset = offsets.get(&root_format_idx).copied();
|
||||
for raw_audio in raw_audios.iter_mut() {
|
||||
raw_audio.video_idx = root_format_idx;
|
||||
}
|
||||
} else {
|
||||
for format in &mut self.formats {
|
||||
format.metadata.skip_events = None
|
||||
}
|
||||
if !offset_pre_checked {
|
||||
warn!("Couldn't find reliable sync positions")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// add audio metadata
|
||||
for raw_audio in raw_audios {
|
||||
audios.push(FFmpegAudioMeta {
|
||||
path: raw_audio.path,
|
||||
locale: raw_audio.locale,
|
||||
start_time: audio_offsets.get(&raw_audio.format_id).copied(),
|
||||
video_idx: raw_audio.video_idx,
|
||||
})
|
||||
}
|
||||
|
||||
// downloads all videos
|
||||
for (i, format) in self.formats.iter().enumerate() {
|
||||
let path = self
|
||||
let video_path = self
|
||||
.download_video(
|
||||
&format.video.0,
|
||||
format!("{:<1$}", format!("Downloading video #{}", i + 1), fmt_space),
|
||||
None,
|
||||
)
|
||||
.await?;
|
||||
for (variant_data, locale) in format.audios.iter() {
|
||||
let audio_path = self
|
||||
.download_audio(
|
||||
variant_data,
|
||||
format!("{:<1$}", format!("Downloading {} audio", locale), fmt_space),
|
||||
)
|
||||
.await?;
|
||||
audios.push(FFmpegMeta {
|
||||
path: audio_path,
|
||||
language: locale.clone(),
|
||||
title: if i == 0 {
|
||||
locale.to_human_readable()
|
||||
} else {
|
||||
format!("{} [Video: #{}]", locale.to_human_readable(), i + 1)
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
let (len, fps) = get_video_stats(&path)?;
|
||||
let (len, fps) = get_video_stats(&video_path)?;
|
||||
if max_len < len {
|
||||
max_len = len
|
||||
}
|
||||
let frames = ((len.num_milliseconds() as f64
|
||||
- video_offset.unwrap_or_default().num_milliseconds() as f64)
|
||||
/ 1000.0
|
||||
* fps) as u64;
|
||||
if max_frames < frames {
|
||||
max_frames = frames
|
||||
let frames = len.signed_duration_since(NaiveTime::MIN).num_seconds() as f64 * fps;
|
||||
if frames > max_frames {
|
||||
max_frames = frames;
|
||||
}
|
||||
|
||||
videos.push(FFmpegVideoMeta {
|
||||
path,
|
||||
length: len,
|
||||
start_time: video_offset,
|
||||
})
|
||||
}
|
||||
|
||||
for (i, format) in self.formats.iter().enumerate() {
|
||||
if format.subtitles.is_empty() {
|
||||
continue;
|
||||
}
|
||||
|
||||
let progress_spinner = if log::max_level() == LevelFilter::Info {
|
||||
let progress_spinner = ProgressBar::new_spinner()
|
||||
.with_style(
|
||||
ProgressStyle::with_template(
|
||||
format!(
|
||||
":: {:<1$} {{msg}} {{spinner}}",
|
||||
"Downloading subtitles", fmt_space
|
||||
if !format.subtitles.is_empty() {
|
||||
let progress_spinner = if log::max_level() == LevelFilter::Info {
|
||||
let progress_spinner = ProgressBar::new_spinner()
|
||||
.with_style(
|
||||
ProgressStyle::with_template(
|
||||
format!(
|
||||
":: {:<1$} {{msg}} {{spinner}}",
|
||||
"Downloading subtitles", fmt_space
|
||||
)
|
||||
.as_str(),
|
||||
)
|
||||
.as_str(),
|
||||
.unwrap()
|
||||
.tick_strings(&["—", "\\", "|", "/", ""]),
|
||||
)
|
||||
.unwrap()
|
||||
.tick_strings(&["—", "\\", "|", "/", ""]),
|
||||
)
|
||||
.with_finish(ProgressFinish::Abandon);
|
||||
progress_spinner.enable_steady_tick(Duration::from_millis(100));
|
||||
Some(progress_spinner)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
.with_finish(ProgressFinish::Abandon);
|
||||
progress_spinner.enable_steady_tick(Duration::from_millis(100));
|
||||
Some(progress_spinner)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
for (j, (subtitle, cc)) in format.subtitles.iter().enumerate() {
|
||||
if *cc && self.no_closed_caption {
|
||||
continue;
|
||||
for (subtitle, not_cc) in format.subtitles.iter() {
|
||||
if !not_cc && self.no_closed_caption {
|
||||
continue;
|
||||
}
|
||||
|
||||
if let Some(pb) = &progress_spinner {
|
||||
let mut progress_message = pb.message();
|
||||
if !progress_message.is_empty() {
|
||||
progress_message += ", "
|
||||
}
|
||||
progress_message += &subtitle.locale.to_string();
|
||||
if !not_cc {
|
||||
progress_message += " (CC)";
|
||||
}
|
||||
if i != 0 {
|
||||
progress_message += &format!(" [Video: #{}]", i + 1);
|
||||
}
|
||||
pb.set_message(progress_message)
|
||||
}
|
||||
|
||||
let mut subtitle_title = subtitle.locale.to_human_readable();
|
||||
if !not_cc {
|
||||
subtitle_title += " (CC)"
|
||||
}
|
||||
if i != 0 {
|
||||
subtitle_title += &format!(" [Video: #{}]", i + 1)
|
||||
}
|
||||
|
||||
let subtitle_path = self.download_subtitle(subtitle.clone(), len).await?;
|
||||
debug!(
|
||||
"Downloaded {} subtitles{}{}",
|
||||
subtitle.locale,
|
||||
(!not_cc).then_some(" (cc)").unwrap_or_default(),
|
||||
(i != 0)
|
||||
.then_some(format!(" for video {}", i))
|
||||
.unwrap_or_default()
|
||||
);
|
||||
subtitles.push(FFmpegMeta {
|
||||
path: subtitle_path,
|
||||
language: subtitle.locale.clone(),
|
||||
title: subtitle_title,
|
||||
})
|
||||
}
|
||||
|
||||
if let Some(pb) = &progress_spinner {
|
||||
let mut progress_message = pb.message();
|
||||
if !progress_message.is_empty() {
|
||||
progress_message += ", "
|
||||
}
|
||||
progress_message += &subtitle.locale.to_string();
|
||||
if *cc {
|
||||
progress_message += " (CC)";
|
||||
}
|
||||
if i.min(videos.len() - 1) != 0 {
|
||||
progress_message += &format!(" [Video: #{}]", i + 1);
|
||||
}
|
||||
pb.set_message(progress_message)
|
||||
}
|
||||
|
||||
let path = self
|
||||
.download_subtitle(subtitle.clone(), videos[i.min(videos.len() - 1)].length)
|
||||
.await?;
|
||||
debug!(
|
||||
"Downloaded {} subtitles{}",
|
||||
subtitle.locale,
|
||||
cc.then_some(" (cc)").unwrap_or_default(),
|
||||
);
|
||||
subtitles.push(FFmpegSubtitleMeta {
|
||||
path,
|
||||
locale: subtitle.locale.clone(),
|
||||
cc: *cc,
|
||||
start_time: subtitle_offsets.get(&j).cloned(),
|
||||
video_idx: i,
|
||||
})
|
||||
}
|
||||
}
|
||||
videos.push(FFmpegMeta {
|
||||
path: video_path,
|
||||
language: format.video.1.clone(),
|
||||
title: if self.formats.len() == 1 {
|
||||
"Default".to_string()
|
||||
} else {
|
||||
format!("#{}", i + 1)
|
||||
},
|
||||
});
|
||||
|
||||
for format in self.formats.iter() {
|
||||
if let Some(skip_events) = &format.metadata.skip_events {
|
||||
let (file, path) = tempfile(".chapter")?.into_parts();
|
||||
chapters = Some((
|
||||
|
|
@ -560,30 +421,17 @@ impl Downloader {
|
|||
let mut metadata = vec![];
|
||||
|
||||
for (i, meta) in videos.iter().enumerate() {
|
||||
if let Some(start_time) = meta.start_time {
|
||||
input.extend(["-itsoffset".to_string(), format_time_delta(&start_time)])
|
||||
}
|
||||
input.extend(["-i".to_string(), meta.path.to_string_lossy().to_string()]);
|
||||
maps.extend(["-map".to_string(), i.to_string()]);
|
||||
metadata.extend([
|
||||
format!("-metadata:s:v:{}", i),
|
||||
format!(
|
||||
"title={}",
|
||||
if videos.len() == 1 {
|
||||
"Default".to_string()
|
||||
} else {
|
||||
format!("#{}", i + 1)
|
||||
}
|
||||
),
|
||||
format!("title={}", meta.title),
|
||||
]);
|
||||
// the empty language metadata is created to avoid that metadata from the original track
|
||||
// is copied
|
||||
metadata.extend([format!("-metadata:s:v:{}", i), "language=".to_string()])
|
||||
}
|
||||
for (i, meta) in audios.iter().enumerate() {
|
||||
if let Some(start_time) = meta.start_time {
|
||||
input.extend(["-itsoffset".to_string(), format_time_delta(&start_time)])
|
||||
}
|
||||
input.extend(["-i".to_string(), meta.path.to_string_lossy().to_string()]);
|
||||
maps.extend(["-map".to_string(), (i + videos.len()).to_string()]);
|
||||
metadata.extend([
|
||||
|
|
@ -591,24 +439,13 @@ impl Downloader {
|
|||
format!(
|
||||
"language={}",
|
||||
self.audio_locale_output_map
|
||||
.get(&meta.locale)
|
||||
.unwrap_or(&meta.locale.to_string())
|
||||
.get(&meta.language)
|
||||
.unwrap_or(&meta.language.to_string())
|
||||
),
|
||||
]);
|
||||
metadata.extend([
|
||||
format!("-metadata:s:a:{}", i),
|
||||
format!(
|
||||
"title={}",
|
||||
if videos.len() == 1 {
|
||||
meta.locale.to_human_readable()
|
||||
} else {
|
||||
format!(
|
||||
"{} [Video: #{}]",
|
||||
meta.locale.to_human_readable(),
|
||||
meta.video_idx + 1
|
||||
)
|
||||
}
|
||||
),
|
||||
format!("title={}", meta.title),
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
@ -628,9 +465,6 @@ impl Downloader {
|
|||
|
||||
if container_supports_softsubs {
|
||||
for (i, meta) in subtitles.iter().enumerate() {
|
||||
if let Some(start_time) = meta.start_time {
|
||||
input.extend(["-itsoffset".to_string(), format_time_delta(&start_time)])
|
||||
}
|
||||
input.extend(["-i".to_string(), meta.path.to_string_lossy().to_string()]);
|
||||
maps.extend([
|
||||
"-map".to_string(),
|
||||
|
|
@ -641,22 +475,13 @@ impl Downloader {
|
|||
format!(
|
||||
"language={}",
|
||||
self.subtitle_locale_output_map
|
||||
.get(&meta.locale)
|
||||
.unwrap_or(&meta.locale.to_string())
|
||||
.get(&meta.language)
|
||||
.unwrap_or(&meta.language.to_string())
|
||||
),
|
||||
]);
|
||||
metadata.extend([
|
||||
format!("-metadata:s:s:{}", i),
|
||||
format!("title={}", {
|
||||
let mut title = meta.locale.to_human_readable();
|
||||
if meta.cc {
|
||||
title += " (CC)"
|
||||
}
|
||||
if videos.len() > 1 {
|
||||
title += &format!(" [Video: #{}]", meta.video_idx + 1)
|
||||
}
|
||||
title
|
||||
}),
|
||||
format!("title={}", meta.title),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -698,7 +523,10 @@ impl Downloader {
|
|||
|
||||
// set default subtitle
|
||||
if let Some(default_subtitle) = self.default_subtitle {
|
||||
if let Some(position) = subtitles.iter().position(|m| m.locale == default_subtitle) {
|
||||
if let Some(position) = subtitles
|
||||
.iter()
|
||||
.position(|m| m.language == default_subtitle)
|
||||
{
|
||||
if container_supports_softsubs {
|
||||
match dst.extension().unwrap_or_default().to_str().unwrap() {
|
||||
"mov" | "mp4" => output_presets.extend([
|
||||
|
|
@ -722,7 +550,7 @@ impl Downloader {
|
|||
output_presets.remove(i - remove_count);
|
||||
remove_count += 1;
|
||||
}
|
||||
last.clone_from(s);
|
||||
last = s.clone();
|
||||
}
|
||||
|
||||
output_presets.extend([
|
||||
|
|
@ -757,7 +585,7 @@ impl Downloader {
|
|||
if container_supports_softsubs {
|
||||
if let Some(position) = subtitles
|
||||
.iter()
|
||||
.position(|meta| meta.locale == default_subtitle)
|
||||
.position(|meta| meta.language == default_subtitle)
|
||||
{
|
||||
command_args.extend([
|
||||
format!("-disposition:s:s:{}", position),
|
||||
|
|
@ -769,13 +597,19 @@ impl Downloader {
|
|||
|
||||
// set the 'forced' flag to CC subtitles
|
||||
for (i, subtitle) in subtitles.iter().enumerate() {
|
||||
if !subtitle.cc {
|
||||
// well, checking if the title contains '(CC)' might not be the best solutions from a
|
||||
// performance perspective but easier than adjusting the `FFmpegMeta` struct
|
||||
if !subtitle.title.contains("(CC)") {
|
||||
continue;
|
||||
}
|
||||
|
||||
command_args.extend([format!("-disposition:s:s:{}", i), "forced".to_string()])
|
||||
}
|
||||
|
||||
// manually specifying the color model for the output file. this must be done manually
|
||||
// because some Crunchyroll episodes are encoded in a way that ffmpeg cannot re-encode
|
||||
command_args.extend(["-pix_fmt".to_string(), "yuv420p".to_string()]);
|
||||
|
||||
command_args.extend(output_presets);
|
||||
if let Some(output_format) = self.output_format {
|
||||
command_args.extend(["-f".to_string(), output_format]);
|
||||
|
|
@ -798,7 +632,7 @@ impl Downloader {
|
|||
// create parent directory if it does not exist
|
||||
if let Some(parent) = dst.parent() {
|
||||
if !parent.exists() {
|
||||
fs::create_dir_all(parent)?
|
||||
std::fs::create_dir_all(parent)?
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -816,7 +650,7 @@ impl Downloader {
|
|||
let ffmpeg_progress_cancellation_token = ffmpeg_progress_cancel.clone();
|
||||
let ffmpeg_progress = tokio::spawn(async move {
|
||||
ffmpeg_progress(
|
||||
max_frames,
|
||||
max_frames as u64,
|
||||
fifo,
|
||||
format!("{:<1$}", "Generating output file", fmt_space + 1),
|
||||
ffmpeg_progress_cancellation_token,
|
||||
|
|
@ -847,7 +681,7 @@ impl Downloader {
|
|||
let segments = stream_data.segments();
|
||||
|
||||
// sum the length of all streams up
|
||||
estimated_required_space += estimate_stream_data_file_size(stream_data, &segments);
|
||||
estimated_required_space += estimate_variant_file_size(stream_data, &segments);
|
||||
}
|
||||
|
||||
let tmp_stat = fs2::statvfs(temp_directory()).unwrap();
|
||||
|
|
@ -893,16 +727,11 @@ impl Downloader {
|
|||
Ok((tmp_required, dst_required))
|
||||
}
|
||||
|
||||
async fn download_video(
|
||||
&self,
|
||||
stream_data: &StreamData,
|
||||
message: String,
|
||||
max_segments: Option<usize>,
|
||||
) -> Result<TempPath> {
|
||||
async fn download_video(&self, stream_data: &StreamData, message: String) -> Result<TempPath> {
|
||||
let tempfile = tempfile(".mp4")?;
|
||||
let (mut file, path) = tempfile.into_parts();
|
||||
|
||||
self.download_segments(&mut file, message, stream_data, max_segments)
|
||||
self.download_segments(&mut file, message, stream_data)
|
||||
.await?;
|
||||
|
||||
Ok(path)
|
||||
|
|
@ -912,7 +741,7 @@ impl Downloader {
|
|||
let tempfile = tempfile(".m4a")?;
|
||||
let (mut file, path) = tempfile.into_parts();
|
||||
|
||||
self.download_segments(&mut file, message, stream_data, None)
|
||||
self.download_segments(&mut file, message, stream_data)
|
||||
.await?;
|
||||
|
||||
Ok(path)
|
||||
|
|
@ -921,47 +750,16 @@ impl Downloader {
|
|||
async fn download_subtitle(
|
||||
&self,
|
||||
subtitle: Subtitle,
|
||||
max_length: TimeDelta,
|
||||
max_length: NaiveTime,
|
||||
) -> Result<TempPath> {
|
||||
let buf = subtitle.data().await?;
|
||||
let mut ass = match subtitle.format.as_str() {
|
||||
"ass" => SSA::parse(String::from_utf8_lossy(&buf))?,
|
||||
"vtt" => VTT::parse(String::from_utf8_lossy(&buf))?.to_ssa(),
|
||||
_ => bail!("unknown subtitle format: {}", subtitle.format),
|
||||
};
|
||||
// subtitles aren't always correct sorted and video players may have issues with that. to
|
||||
// prevent issues, the subtitles are sorted
|
||||
// (https://github.com/crunchy-labs/crunchy-cli/issues/208)
|
||||
ass.events.sort_by(|a, b| a.start.cmp(&b.start));
|
||||
// it might be the case that the start and/or end time are greater than the actual video
|
||||
// length. this might also result in issues with video players, thus the times are stripped
|
||||
// to be at most as long as `max_length`
|
||||
// (https://github.com/crunchy-labs/crunchy-cli/issues/32)
|
||||
for i in (0..ass.events.len()).rev() {
|
||||
let max_len = Time::from_hms(0, 0, 0)
|
||||
.unwrap()
|
||||
.add(Duration::from_millis(max_length.num_milliseconds() as u64));
|
||||
|
||||
if ass.events[i].start > max_len {
|
||||
if ass.events[i].end > max_len {
|
||||
ass.events[i].start = max_len
|
||||
}
|
||||
ass.events[i].end = max_len
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// without this additional info, subtitle look very messy in some video player
|
||||
// (https://github.com/crunchy-labs/crunchy-cli/issues/66)
|
||||
ass.info
|
||||
.additional_fields
|
||||
.insert("ScaledBorderAndShadow".to_string(), "yes".to_string());
|
||||
|
||||
let tempfile = tempfile(".ass")?;
|
||||
let path = tempfile.into_temp_path();
|
||||
let (mut file, path) = tempfile.into_parts();
|
||||
|
||||
fs::write(&path, ass.to_string())?;
|
||||
let mut buf = vec![];
|
||||
subtitle.write_to(&mut buf).await?;
|
||||
fix_subtitles(&mut buf, max_length);
|
||||
|
||||
file.write_all(buf.as_slice())?;
|
||||
|
||||
Ok(path)
|
||||
}
|
||||
|
|
@ -998,20 +796,14 @@ impl Downloader {
|
|||
writer: &mut impl Write,
|
||||
message: String,
|
||||
stream_data: &StreamData,
|
||||
max_segments: Option<usize>,
|
||||
) -> Result<()> {
|
||||
let mut segments = stream_data.segments();
|
||||
if let Some(max_segments) = max_segments {
|
||||
segments = segments
|
||||
.drain(0..max_segments.min(segments.len() - 1))
|
||||
.collect();
|
||||
}
|
||||
let segments = stream_data.segments();
|
||||
let total_segments = segments.len();
|
||||
|
||||
let count = Arc::new(Mutex::new(0));
|
||||
|
||||
let progress = if log::max_level() == LevelFilter::Info {
|
||||
let estimated_file_size = estimate_stream_data_file_size(stream_data, &segments);
|
||||
let estimated_file_size = estimate_variant_file_size(stream_data, &segments);
|
||||
|
||||
let progress = ProgressBar::new(estimated_file_size)
|
||||
.with_style(
|
||||
|
|
@ -1028,7 +820,7 @@ impl Downloader {
|
|||
None
|
||||
};
|
||||
|
||||
let cpus = self.download_threads.min(segments.len());
|
||||
let cpus = self.download_threads;
|
||||
let mut segs: Vec<Vec<StreamSegment>> = Vec::with_capacity(cpus);
|
||||
for _ in 0..cpus {
|
||||
segs.push(vec![])
|
||||
|
|
@ -1172,12 +964,12 @@ impl Downloader {
|
|||
}
|
||||
}
|
||||
|
||||
fn estimate_stream_data_file_size(stream_data: &StreamData, segments: &[StreamSegment]) -> u64 {
|
||||
fn estimate_variant_file_size(stream_data: &StreamData, segments: &[StreamSegment]) -> u64 {
|
||||
(stream_data.bandwidth / 8) * segments.iter().map(|s| s.length.as_secs()).sum::<u64>()
|
||||
}
|
||||
|
||||
/// Get the length and fps of a video.
|
||||
fn get_video_stats(path: &Path) -> Result<(TimeDelta, f64)> {
|
||||
fn get_video_stats(path: &Path) -> Result<(NaiveTime, f64)> {
|
||||
let video_length = Regex::new(r"Duration:\s(?P<time>\d+:\d+:\d+\.\d+),")?;
|
||||
let video_fps = Regex::new(r"(?P<fps>[\d/.]+)\sfps")?;
|
||||
|
||||
|
|
@ -1204,8 +996,7 @@ fn get_video_stats(path: &Path) -> Result<(TimeDelta, f64)> {
|
|||
|
||||
Ok((
|
||||
NaiveTime::parse_from_str(length_caps.name("time").unwrap().as_str(), "%H:%M:%S%.f")
|
||||
.unwrap()
|
||||
.signed_duration_since(NaiveTime::MIN),
|
||||
.unwrap(),
|
||||
fps_caps.name("fps").unwrap().as_str().parse().unwrap(),
|
||||
))
|
||||
}
|
||||
|
|
@ -1300,7 +1091,7 @@ const FONTS: [(&str, &str); 68] = [
|
|||
("Webdings", "webdings.woff2"),
|
||||
];
|
||||
lazy_static::lazy_static! {
|
||||
static ref FONT_REGEX: Regex = Regex::new(r"(?m)^(?:Style:\s.+?,(?P<font>.+?),|(?:Dialogue:\s(?:.+?,)+,\{(?:\\.*)?\\fn(?P<overrideFont>[\w\s]+)(?:\\.*)?)\})").unwrap();
|
||||
static ref FONT_REGEX: Regex = Regex::new(r"(?m)^Style:\s.+?,(?P<font>.+?),").unwrap();
|
||||
}
|
||||
|
||||
/// Get the fonts used in the subtitle.
|
||||
|
|
@ -1314,23 +1105,117 @@ fn get_subtitle_stats(path: &Path) -> Result<Vec<String>> {
|
|||
fonts.push(font_string)
|
||||
}
|
||||
}
|
||||
if let Some(override_font) = capture.name("overrideFont") {
|
||||
let font_string = override_font.as_str().to_string();
|
||||
if !fonts.contains(&font_string) {
|
||||
fonts.push(font_string)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Ok(fonts)
|
||||
}
|
||||
|
||||
/// Fix the subtitles in multiple ways as Crunchyroll sometimes delivers them malformed.
|
||||
///
|
||||
/// Look and feel fix: Add `ScaledBorderAndShadows: yes` to subtitles; without it they look very
|
||||
/// messy on some video players. See
|
||||
/// [crunchy-labs/crunchy-cli#66](https://github.com/crunchy-labs/crunchy-cli/issues/66) for more
|
||||
/// information.
|
||||
/// Length fix: Sometimes subtitles have an unnecessary long entry which exceeds the video length,
|
||||
/// some video players can't handle this correctly. To prevent this, the subtitles must be checked
|
||||
/// if any entry is longer than the video length and if so the entry ending must be hard set to not
|
||||
/// exceed the video length. See [crunchy-labs/crunchy-cli#32](https://github.com/crunchy-labs/crunchy-cli/issues/32)
|
||||
/// for more information.
|
||||
/// Sort fix: Sometimes subtitle entries aren't sorted correctly by time which confuses some video
|
||||
/// players. To prevent this, the subtitle entries must be manually sorted. See
|
||||
/// [crunchy-labs/crunchy-cli#208](https://github.com/crunchy-labs/crunchy-cli/issues/208) for more
|
||||
/// information.
|
||||
fn fix_subtitles(raw: &mut Vec<u8>, max_length: NaiveTime) {
|
||||
let re = Regex::new(
|
||||
r"^Dialogue:\s(?P<layer>\d+),(?P<start>\d+:\d+:\d+\.\d+),(?P<end>\d+:\d+:\d+\.\d+),",
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
// chrono panics if we try to format NaiveTime with `%2f` and the nano seconds has more than 2
|
||||
// digits so them have to be reduced manually to avoid the panic
|
||||
fn format_naive_time(native_time: NaiveTime) -> String {
|
||||
let formatted_time = native_time.format("%f").to_string();
|
||||
format!(
|
||||
"{}.{}",
|
||||
native_time.format("%T"),
|
||||
if formatted_time.len() <= 2 {
|
||||
native_time.format("%2f").to_string()
|
||||
} else {
|
||||
formatted_time.split_at(2).0.parse().unwrap()
|
||||
}
|
||||
)
|
||||
.split_off(1) // <- in the ASS spec, the hour has only one digit
|
||||
}
|
||||
|
||||
let mut entries = (vec![], vec![]);
|
||||
|
||||
let mut as_lines: Vec<String> = String::from_utf8_lossy(raw.as_slice())
|
||||
.split('\n')
|
||||
.map(|s| s.to_string())
|
||||
.collect();
|
||||
|
||||
for (i, line) in as_lines.iter_mut().enumerate() {
|
||||
if line.trim() == "[Script Info]" {
|
||||
line.push_str("\nScaledBorderAndShadow: yes")
|
||||
} else if let Some(capture) = re.captures(line) {
|
||||
let mut start = capture.name("start").map_or(NaiveTime::default(), |s| {
|
||||
NaiveTime::parse_from_str(s.as_str(), "%H:%M:%S.%f").unwrap()
|
||||
});
|
||||
let mut end = capture.name("end").map_or(NaiveTime::default(), |e| {
|
||||
NaiveTime::parse_from_str(e.as_str(), "%H:%M:%S.%f").unwrap()
|
||||
});
|
||||
|
||||
if start > max_length || end > max_length {
|
||||
let layer = capture
|
||||
.name("layer")
|
||||
.map_or(0, |l| i32::from_str(l.as_str()).unwrap());
|
||||
|
||||
if start > max_length {
|
||||
start = max_length;
|
||||
}
|
||||
if start > max_length || end > max_length {
|
||||
end = max_length;
|
||||
}
|
||||
|
||||
*line = re
|
||||
.replace(
|
||||
line,
|
||||
format!(
|
||||
"Dialogue: {},{},{},",
|
||||
layer,
|
||||
format_naive_time(start),
|
||||
format_naive_time(end)
|
||||
),
|
||||
)
|
||||
.to_string()
|
||||
}
|
||||
entries.0.push((start, i));
|
||||
entries.1.push(i)
|
||||
}
|
||||
}
|
||||
|
||||
entries.0.sort_by(|(a, _), (b, _)| a.cmp(b));
|
||||
for i in 0..entries.0.len() {
|
||||
let (_, original_position) = entries.0[i];
|
||||
let new_position = entries.1[i];
|
||||
|
||||
if original_position != new_position {
|
||||
as_lines.swap(original_position, new_position)
|
||||
}
|
||||
}
|
||||
|
||||
*raw = as_lines.join("\n").into_bytes()
|
||||
}
|
||||
|
||||
fn write_ffmpeg_chapters(
|
||||
file: &mut fs::File,
|
||||
video_len: TimeDelta,
|
||||
video_len: NaiveTime,
|
||||
events: &mut Vec<(&str, &SkipEventsEvent)>,
|
||||
) -> Result<()> {
|
||||
let video_len = video_len.num_milliseconds() as f32 / 1000.0;
|
||||
let video_len = video_len
|
||||
.signed_duration_since(NaiveTime::MIN)
|
||||
.num_milliseconds() as f32
|
||||
/ 1000.0;
|
||||
events.sort_by(|(_, event_a), (_, event_b)| event_a.start.total_cmp(&event_b.start));
|
||||
|
||||
writeln!(file, ";FFMETADATA1")?;
|
||||
|
|
@ -1400,11 +1285,21 @@ async fn ffmpeg_progress<R: AsyncReadExt + Unpin>(
|
|||
|
||||
let reader = BufReader::new(stats);
|
||||
let mut lines = reader.lines();
|
||||
let mut frame = 0;
|
||||
loop {
|
||||
select! {
|
||||
// when gracefully canceling this future, set the progress to 100% (finished). sometimes
|
||||
// ffmpeg is too fast or already finished when the reading process of 'stats' starts
|
||||
// which causes the progress to be stuck at 0%
|
||||
_ = cancellation_token.cancelled() => {
|
||||
break
|
||||
if let Some(p) = &progress {
|
||||
p.set_position(total_frames)
|
||||
}
|
||||
debug!(
|
||||
"Processed frame [{}/{} 100%]",
|
||||
total_frames,
|
||||
total_frames
|
||||
);
|
||||
return Ok(())
|
||||
}
|
||||
line = lines.next_line() => {
|
||||
let Some(line) = line? else {
|
||||
|
|
@ -1419,7 +1314,7 @@ async fn ffmpeg_progress<R: AsyncReadExt + Unpin>(
|
|||
let Some(frame_str) = frame_cap.name("frame") else {
|
||||
break
|
||||
};
|
||||
frame = frame_str.as_str().parse()?;
|
||||
let frame: u64 = frame_str.as_str().parse()?;
|
||||
|
||||
if let Some(p) = &progress {
|
||||
p.set_position(frame)
|
||||
|
|
@ -1435,19 +1330,5 @@ async fn ffmpeg_progress<R: AsyncReadExt + Unpin>(
|
|||
}
|
||||
}
|
||||
|
||||
// when this future is gracefully cancelled or if ffmpeg is too fast or already finished when
|
||||
// reading process of 'stats' starts (which causes the progress to be stuck at 0%), the progress
|
||||
// is manually set to 100% here
|
||||
if frame < total_frames {
|
||||
if let Some(p) = &progress {
|
||||
p.set_position(total_frames)
|
||||
}
|
||||
debug!("Processed frame [{}/{} 100%]", total_frames, total_frames);
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn len_from_segments(segments: &[StreamSegment]) -> TimeDelta {
|
||||
TimeDelta::milliseconds(segments.iter().map(|s| s.length.as_millis()).sum::<u128>() as i64)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
use lazy_static::lazy_static;
|
||||
use regex::Regex;
|
||||
use std::fmt;
|
||||
use std::fmt::Formatter;
|
||||
use std::str::FromStr;
|
||||
|
||||
pub const SOFTSUB_CONTAINERS: [&str; 3] = ["mkv", "mov", "mp4"];
|
||||
|
|
@ -35,11 +33,11 @@ macro_rules! ffmpeg_enum {
|
|||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for $name {
|
||||
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
||||
impl ToString for $name {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
$(
|
||||
&$name::$field => write!(f, "{}", stringify!($field).to_string().to_lowercase())
|
||||
&$name::$field => stringify!($field).to_string().to_lowercase()
|
||||
),*
|
||||
}
|
||||
}
|
||||
|
|
@ -137,16 +135,23 @@ impl FFmpegPreset {
|
|||
for (codec, hwaccel, quality) in FFmpegPreset::available_matches() {
|
||||
let mut description_details = vec![];
|
||||
if let Some(h) = &hwaccel {
|
||||
description_details.push(format!("{h} hardware acceleration"))
|
||||
description_details.push(format!("{} hardware acceleration", h.to_string()))
|
||||
}
|
||||
if let Some(q) = &quality {
|
||||
description_details.push(format!("{q} video quality/compression"))
|
||||
description_details.push(format!("{} video quality/compression", q.to_string()))
|
||||
}
|
||||
|
||||
let description = if description_details.is_empty() {
|
||||
format!("{codec} encoded with default video quality/compression",)
|
||||
format!(
|
||||
"{} encoded with default video quality/compression",
|
||||
codec.to_string()
|
||||
)
|
||||
} else if description_details.len() == 1 {
|
||||
format!("{} encoded with {}", codec, description_details[0])
|
||||
format!(
|
||||
"{} encoded with {}",
|
||||
codec.to_string(),
|
||||
description_details[0]
|
||||
)
|
||||
} else {
|
||||
let first = description_details.remove(0);
|
||||
let last = description_details.remove(description_details.len() - 1);
|
||||
|
|
@ -156,7 +161,13 @@ impl FFmpegPreset {
|
|||
"".to_string()
|
||||
};
|
||||
|
||||
format!("{codec} encoded with {first}{mid} and {last}",)
|
||||
format!(
|
||||
"{} encoded with {}{} and {}",
|
||||
codec.to_string(),
|
||||
first,
|
||||
mid,
|
||||
last
|
||||
)
|
||||
};
|
||||
|
||||
return_values.push(format!(
|
||||
|
|
@ -190,7 +201,11 @@ impl FFmpegPreset {
|
|||
.find(|p| p.to_string() == token.to_lowercase())
|
||||
{
|
||||
if let Some(cc) = codec {
|
||||
return Err(format!("cannot use multiple codecs (found {cc} and {c})",));
|
||||
return Err(format!(
|
||||
"cannot use multiple codecs (found {} and {})",
|
||||
cc.to_string(),
|
||||
c.to_string()
|
||||
));
|
||||
}
|
||||
codec = Some(c)
|
||||
} else if let Some(h) = FFmpegHwAccel::all()
|
||||
|
|
@ -199,7 +214,9 @@ impl FFmpegPreset {
|
|||
{
|
||||
if let Some(hh) = hwaccel {
|
||||
return Err(format!(
|
||||
"cannot use multiple hardware accelerations (found {hh} and {h})",
|
||||
"cannot use multiple hardware accelerations (found {} and {})",
|
||||
hh.to_string(),
|
||||
h.to_string()
|
||||
));
|
||||
}
|
||||
hwaccel = Some(h)
|
||||
|
|
@ -209,7 +226,9 @@ impl FFmpegPreset {
|
|||
{
|
||||
if let Some(qq) = quality {
|
||||
return Err(format!(
|
||||
"cannot use multiple ffmpeg preset qualities (found {qq} and {q})",
|
||||
"cannot use multiple ffmpeg preset qualities (found {} and {})",
|
||||
qq.to_string(),
|
||||
q.to_string()
|
||||
));
|
||||
}
|
||||
quality = Some(q)
|
||||
|
|
|
|||
|
|
@ -1,407 +1,24 @@
|
|||
use crate::utils::format::{SingleFormat, SingleFormatCollection};
|
||||
use crate::utils::interactive_select::{check_for_duplicated_seasons, get_duplicated_seasons};
|
||||
use crate::utils::parse::{fract, UrlFilter};
|
||||
use anyhow::Result;
|
||||
use crunchyroll_rs::{
|
||||
Concert, Episode, Locale, MediaCollection, Movie, MovieListing, MusicVideo, Season, Series,
|
||||
Concert, Episode, MediaCollection, Movie, MovieListing, MusicVideo, Season, Series,
|
||||
};
|
||||
use log::{info, warn};
|
||||
use std::collections::{BTreeMap, HashMap};
|
||||
use std::ops::Not;
|
||||
|
||||
pub(crate) enum FilterMediaScope<'a> {
|
||||
Series(&'a Series),
|
||||
Season(&'a Season),
|
||||
/// Always contains 1 or 2 episodes.
|
||||
/// - 1: The episode's audio is completely missing
|
||||
/// - 2: The requested audio is only available from first entry to last entry
|
||||
Episode(Vec<&'a Episode>),
|
||||
}
|
||||
pub trait Filter {
|
||||
type T: Send + Sized;
|
||||
type Output: Send + Sized;
|
||||
|
||||
pub(crate) struct Filter {
|
||||
url_filter: UrlFilter,
|
||||
async fn visit_series(&mut self, series: Series) -> Result<Vec<Season>>;
|
||||
async fn visit_season(&mut self, season: Season) -> Result<Vec<Episode>>;
|
||||
async fn visit_episode(&mut self, episode: Episode) -> Result<Option<Self::T>>;
|
||||
async fn visit_movie_listing(&mut self, movie_listing: MovieListing) -> Result<Vec<Movie>>;
|
||||
async fn visit_movie(&mut self, movie: Movie) -> Result<Option<Self::T>>;
|
||||
async fn visit_music_video(&mut self, music_video: MusicVideo) -> Result<Option<Self::T>>;
|
||||
async fn visit_concert(&mut self, concert: Concert) -> Result<Option<Self::T>>;
|
||||
|
||||
skip_specials: bool,
|
||||
interactive_input: bool,
|
||||
|
||||
relative_episode_number: bool,
|
||||
|
||||
audio_locales: Vec<Locale>,
|
||||
subtitle_locales: Vec<Locale>,
|
||||
|
||||
audios_missing: fn(FilterMediaScope, Vec<&Locale>) -> Result<bool>,
|
||||
subtitles_missing: fn(FilterMediaScope, Vec<&Locale>) -> Result<bool>,
|
||||
no_premium: fn(u32) -> Result<()>,
|
||||
|
||||
is_premium: bool,
|
||||
|
||||
series_visited: bool,
|
||||
season_episodes: HashMap<String, Vec<Episode>>,
|
||||
season_with_premium: Option<Vec<u32>>,
|
||||
season_sorting: Vec<String>,
|
||||
}
|
||||
|
||||
impl Filter {
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
pub(crate) fn new(
|
||||
url_filter: UrlFilter,
|
||||
audio_locales: Vec<Locale>,
|
||||
subtitle_locales: Vec<Locale>,
|
||||
audios_missing: fn(FilterMediaScope, Vec<&Locale>) -> Result<bool>,
|
||||
subtitles_missing: fn(FilterMediaScope, Vec<&Locale>) -> Result<bool>,
|
||||
no_premium: fn(u32) -> Result<()>,
|
||||
relative_episode_number: bool,
|
||||
interactive_input: bool,
|
||||
skip_specials: bool,
|
||||
is_premium: bool,
|
||||
) -> Self {
|
||||
Self {
|
||||
url_filter,
|
||||
audio_locales,
|
||||
subtitle_locales,
|
||||
relative_episode_number,
|
||||
interactive_input,
|
||||
audios_missing,
|
||||
subtitles_missing,
|
||||
no_premium,
|
||||
is_premium,
|
||||
series_visited: false,
|
||||
season_episodes: HashMap::new(),
|
||||
skip_specials,
|
||||
season_with_premium: is_premium.not().then_some(vec![]),
|
||||
season_sorting: vec![],
|
||||
}
|
||||
}
|
||||
|
||||
async fn visit_series(&mut self, series: Series) -> Result<Vec<Season>> {
|
||||
// the audio locales field isn't always populated
|
||||
if !series.audio_locales.is_empty() {
|
||||
let missing_audios = missing_locales(&series.audio_locales, &self.audio_locales);
|
||||
if !missing_audios.is_empty()
|
||||
&& !(self.audios_missing)(FilterMediaScope::Series(&series), missing_audios)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
let missing_subtitles =
|
||||
missing_locales(&series.subtitle_locales, &self.subtitle_locales);
|
||||
if !missing_subtitles.is_empty()
|
||||
&& !(self.subtitles_missing)(FilterMediaScope::Series(&series), missing_subtitles)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
}
|
||||
|
||||
let mut seasons = vec![];
|
||||
for season in series.seasons().await? {
|
||||
if !self.url_filter.is_season_valid(season.season_number) {
|
||||
continue;
|
||||
}
|
||||
let missing_audios = missing_locales(
|
||||
&season
|
||||
.versions
|
||||
.iter()
|
||||
.map(|l| l.audio_locale.clone())
|
||||
.collect::<Vec<Locale>>(),
|
||||
&self.audio_locales,
|
||||
);
|
||||
if !missing_audios.is_empty()
|
||||
&& !(self.audios_missing)(FilterMediaScope::Season(&season), missing_audios)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
seasons.push(season)
|
||||
}
|
||||
|
||||
let duplicated_seasons = get_duplicated_seasons(&seasons);
|
||||
if !duplicated_seasons.is_empty() {
|
||||
if self.interactive_input {
|
||||
check_for_duplicated_seasons(&mut seasons)
|
||||
} else {
|
||||
info!(
|
||||
"Found duplicated seasons: {}",
|
||||
duplicated_seasons
|
||||
.iter()
|
||||
.map(|d| d.to_string())
|
||||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
self.series_visited = true;
|
||||
|
||||
Ok(seasons)
|
||||
}
|
||||
|
||||
async fn visit_season(&mut self, season: Season) -> Result<Vec<Episode>> {
|
||||
if !self.url_filter.is_season_valid(season.season_number) {
|
||||
return Ok(vec![]);
|
||||
}
|
||||
|
||||
let mut seasons = vec![];
|
||||
if self
|
||||
.audio_locales
|
||||
.iter()
|
||||
.any(|l| season.audio_locales.contains(l))
|
||||
{
|
||||
seasons.push(season.clone())
|
||||
}
|
||||
for version in season.versions {
|
||||
if season.id == version.id {
|
||||
continue;
|
||||
}
|
||||
if self.audio_locales.contains(&version.audio_locale) {
|
||||
seasons.push(version.season().await?)
|
||||
}
|
||||
}
|
||||
|
||||
let mut episodes = vec![];
|
||||
for season in seasons {
|
||||
self.season_sorting.push(season.id.clone());
|
||||
let mut eps = season.episodes().await?;
|
||||
|
||||
// removes any episode that does not have the audio locale of the season. yes, this is
|
||||
// the case sometimes
|
||||
if season.audio_locales.len() < 2 {
|
||||
let season_locale = season
|
||||
.audio_locales
|
||||
.first()
|
||||
.cloned()
|
||||
.unwrap_or(Locale::ja_JP);
|
||||
eps.retain(|e| e.audio_locale == season_locale)
|
||||
}
|
||||
|
||||
#[allow(clippy::if_same_then_else)]
|
||||
if eps.len() < season.number_of_episodes as usize {
|
||||
if eps.is_empty()
|
||||
&& !(self.audios_missing)(
|
||||
FilterMediaScope::Season(&season),
|
||||
season.audio_locales.iter().collect(),
|
||||
)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
} else if !eps.is_empty()
|
||||
&& !(self.audios_missing)(
|
||||
FilterMediaScope::Episode(vec![eps.first().unwrap(), eps.last().unwrap()]),
|
||||
vec![&eps.first().unwrap().audio_locale],
|
||||
)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
}
|
||||
|
||||
episodes.extend(eps)
|
||||
}
|
||||
|
||||
if self.relative_episode_number {
|
||||
for episode in &episodes {
|
||||
self.season_episodes
|
||||
.entry(episode.season_id.clone())
|
||||
.or_default()
|
||||
.push(episode.clone())
|
||||
}
|
||||
}
|
||||
|
||||
Ok(episodes)
|
||||
}
|
||||
|
||||
async fn visit_episode(&mut self, episode: Episode) -> Result<Vec<SingleFormat>> {
|
||||
if !self
|
||||
.url_filter
|
||||
.is_episode_valid(episode.sequence_number, episode.season_number)
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
|
||||
// skip the episode if it's a special
|
||||
if self.skip_specials
|
||||
&& (episode.sequence_number == 0.0 || episode.sequence_number.fract() != 0.0)
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
|
||||
let mut episodes = vec![];
|
||||
if !self.series_visited {
|
||||
if self.audio_locales.contains(&episode.audio_locale) {
|
||||
episodes.push(episode.clone())
|
||||
}
|
||||
for version in &episode.versions {
|
||||
// `episode` is also a version of itself. the if block above already adds the
|
||||
// episode if it matches the requested audio, so it doesn't need to be requested
|
||||
// here again
|
||||
if version.id == episode.id {
|
||||
continue;
|
||||
}
|
||||
if self.audio_locales.contains(&version.audio_locale) {
|
||||
episodes.push(version.episode().await?)
|
||||
}
|
||||
}
|
||||
|
||||
let audio_locales: Vec<Locale> =
|
||||
episodes.iter().map(|e| e.audio_locale.clone()).collect();
|
||||
let missing_audios = missing_locales(&audio_locales, &self.audio_locales);
|
||||
if !missing_audios.is_empty()
|
||||
&& !(self.audios_missing)(
|
||||
FilterMediaScope::Episode(vec![&episode]),
|
||||
missing_audios,
|
||||
)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
|
||||
let mut subtitle_locales: Vec<Locale> = episodes
|
||||
.iter()
|
||||
.flat_map(|e| e.subtitle_locales.clone())
|
||||
.collect();
|
||||
subtitle_locales.sort();
|
||||
subtitle_locales.dedup();
|
||||
let missing_subtitles = missing_locales(&subtitle_locales, &self.subtitle_locales);
|
||||
if !missing_subtitles.is_empty()
|
||||
&& !(self.subtitles_missing)(
|
||||
FilterMediaScope::Episode(vec![&episode]),
|
||||
missing_subtitles,
|
||||
)?
|
||||
{
|
||||
return Ok(vec![]);
|
||||
}
|
||||
} else {
|
||||
episodes.push(episode.clone())
|
||||
}
|
||||
|
||||
if let Some(seasons_with_premium) = &mut self.season_with_premium {
|
||||
let episodes_len_before = episodes.len();
|
||||
episodes.retain(|e| !e.is_premium_only && !self.is_premium);
|
||||
if episodes_len_before < episodes.len()
|
||||
&& !seasons_with_premium.contains(&episode.season_number)
|
||||
{
|
||||
(self.no_premium)(episode.season_number)?;
|
||||
seasons_with_premium.push(episode.season_number)
|
||||
}
|
||||
|
||||
if episodes.is_empty() {
|
||||
return Ok(vec![]);
|
||||
}
|
||||
}
|
||||
|
||||
let mut relative_episode_number = None;
|
||||
let mut relative_sequence_number = None;
|
||||
if self.relative_episode_number {
|
||||
let season_eps = match self.season_episodes.get(&episode.season_id) {
|
||||
Some(eps) => eps,
|
||||
None => {
|
||||
self.season_episodes.insert(
|
||||
episode.season_id.clone(),
|
||||
episode.season().await?.episodes().await?,
|
||||
);
|
||||
self.season_episodes.get(&episode.season_id).unwrap()
|
||||
}
|
||||
};
|
||||
let mut non_integer_sequence_number_count = 0;
|
||||
for (i, ep) in season_eps.iter().enumerate() {
|
||||
if ep.sequence_number != 0.0 || ep.sequence_number.fract() == 0.0 {
|
||||
non_integer_sequence_number_count += 1
|
||||
}
|
||||
if ep.id == episode.id {
|
||||
relative_episode_number = Some(i + 1);
|
||||
relative_sequence_number = Some(
|
||||
(i + 1 - non_integer_sequence_number_count) as f32
|
||||
+ fract(ep.sequence_number),
|
||||
);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if relative_episode_number.is_none() || relative_sequence_number.is_none() {
|
||||
warn!(
|
||||
"Failed to get relative episode number for episode {} ({}) of {} season {}",
|
||||
episode.sequence_number,
|
||||
episode.title,
|
||||
episode.series_title,
|
||||
episode.season_number,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Ok(episodes
|
||||
.into_iter()
|
||||
.map(|e| {
|
||||
SingleFormat::new_from_episode(
|
||||
e.clone(),
|
||||
e.subtitle_locales,
|
||||
relative_episode_number.map(|n| n as u32),
|
||||
relative_sequence_number,
|
||||
)
|
||||
})
|
||||
.collect())
|
||||
}
|
||||
|
||||
async fn visit_movie_listing(&mut self, movie_listing: MovieListing) -> Result<Vec<Movie>> {
|
||||
Ok(movie_listing.movies().await?)
|
||||
}
|
||||
|
||||
async fn visit_movie(&mut self, movie: Movie) -> Result<Vec<SingleFormat>> {
|
||||
Ok(vec![SingleFormat::new_from_movie(movie, vec![])])
|
||||
}
|
||||
|
||||
async fn visit_music_video(&mut self, music_video: MusicVideo) -> Result<Vec<SingleFormat>> {
|
||||
Ok(vec![SingleFormat::new_from_music_video(music_video)])
|
||||
}
|
||||
|
||||
async fn visit_concert(&mut self, concert: Concert) -> Result<Vec<SingleFormat>> {
|
||||
Ok(vec![SingleFormat::new_from_concert(concert)])
|
||||
}
|
||||
|
||||
async fn finish(self, input: Vec<Vec<SingleFormat>>) -> Result<SingleFormatCollection> {
|
||||
let flatten_input: Vec<SingleFormat> = input.into_iter().flatten().collect();
|
||||
|
||||
let mut single_format_collection = SingleFormatCollection::new();
|
||||
|
||||
let mut pre_sorted: BTreeMap<String, Vec<SingleFormat>> = BTreeMap::new();
|
||||
for data in flatten_input {
|
||||
pre_sorted
|
||||
.entry(data.identifier.clone())
|
||||
.or_default()
|
||||
.push(data)
|
||||
}
|
||||
|
||||
let mut sorted: Vec<(String, Vec<SingleFormat>)> = pre_sorted.into_iter().collect();
|
||||
sorted.sort_by(|(_, a), (_, b)| {
|
||||
self.season_sorting
|
||||
.iter()
|
||||
.position(|p| p == &a.first().unwrap().season_id)
|
||||
.unwrap()
|
||||
.cmp(
|
||||
&self
|
||||
.season_sorting
|
||||
.iter()
|
||||
.position(|p| p == &b.first().unwrap().season_id)
|
||||
.unwrap(),
|
||||
)
|
||||
});
|
||||
|
||||
for (_, mut data) in sorted {
|
||||
data.sort_by(|a, b| {
|
||||
self.audio_locales
|
||||
.iter()
|
||||
.position(|p| p == &a.audio)
|
||||
.unwrap_or(usize::MAX)
|
||||
.cmp(
|
||||
&self
|
||||
.audio_locales
|
||||
.iter()
|
||||
.position(|p| p == &b.audio)
|
||||
.unwrap_or(usize::MAX),
|
||||
)
|
||||
});
|
||||
single_format_collection.add_single_formats(data)
|
||||
}
|
||||
|
||||
Ok(single_format_collection)
|
||||
}
|
||||
|
||||
pub(crate) async fn visit(
|
||||
mut self,
|
||||
media_collection: MediaCollection,
|
||||
) -> Result<SingleFormatCollection> {
|
||||
async fn visit(mut self, media_collection: MediaCollection) -> Result<Self::Output>
|
||||
where
|
||||
Self: Send + Sized,
|
||||
{
|
||||
let mut items = vec![media_collection];
|
||||
let mut result = vec![];
|
||||
|
||||
|
|
@ -425,7 +42,9 @@ impl Filter {
|
|||
.collect::<Vec<MediaCollection>>(),
|
||||
),
|
||||
MediaCollection::Episode(episode) => {
|
||||
result.push(self.visit_episode(episode).await?)
|
||||
if let Some(t) = self.visit_episode(episode).await? {
|
||||
result.push(t)
|
||||
}
|
||||
}
|
||||
MediaCollection::MovieListing(movie_listing) => new_items.extend(
|
||||
self.visit_movie_listing(movie_listing)
|
||||
|
|
@ -434,12 +53,20 @@ impl Filter {
|
|||
.map(|m| m.into())
|
||||
.collect::<Vec<MediaCollection>>(),
|
||||
),
|
||||
MediaCollection::Movie(movie) => result.push(self.visit_movie(movie).await?),
|
||||
MediaCollection::Movie(movie) => {
|
||||
if let Some(t) = self.visit_movie(movie).await? {
|
||||
result.push(t)
|
||||
}
|
||||
}
|
||||
MediaCollection::MusicVideo(music_video) => {
|
||||
result.push(self.visit_music_video(music_video).await?)
|
||||
if let Some(t) = self.visit_music_video(music_video).await? {
|
||||
result.push(t)
|
||||
}
|
||||
}
|
||||
MediaCollection::Concert(concert) => {
|
||||
result.push(self.visit_concert(concert).await?)
|
||||
if let Some(t) = self.visit_concert(concert).await? {
|
||||
result.push(t)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -449,10 +76,8 @@ impl Filter {
|
|||
|
||||
self.finish(result).await
|
||||
}
|
||||
}
|
||||
|
||||
fn missing_locales<'a>(available: &[Locale], searched: &'a [Locale]) -> Vec<&'a Locale> {
|
||||
searched.iter().filter(|p| !available.contains(p)).collect()
|
||||
async fn finish(self, input: Vec<Self::T>) -> Result<Self::Output>;
|
||||
}
|
||||
|
||||
/// Remove all duplicates from a [`Vec`].
|
||||
|
|
|
|||
|
|
@ -1,19 +0,0 @@
|
|||
use chrono::TimeDelta;
|
||||
|
||||
pub fn format_time_delta(time_delta: &TimeDelta) -> String {
|
||||
let negative = *time_delta < TimeDelta::zero();
|
||||
let time_delta = time_delta.abs();
|
||||
let hours = time_delta.num_hours();
|
||||
let minutes = time_delta.num_minutes() - time_delta.num_hours() * 60;
|
||||
let seconds = time_delta.num_seconds() - time_delta.num_minutes() * 60;
|
||||
let milliseconds = time_delta.num_milliseconds() - time_delta.num_seconds() * 1000;
|
||||
|
||||
format!(
|
||||
"{}{}:{:0>2}:{:0>2}.{:0>3}",
|
||||
if negative { "-" } else { "" },
|
||||
hours,
|
||||
minutes,
|
||||
seconds,
|
||||
milliseconds
|
||||
)
|
||||
}
|
||||
|
|
@ -4,7 +4,7 @@ use crate::utils::log::tab_info;
|
|||
use crate::utils::os::{is_special_file, sanitize};
|
||||
use anyhow::{bail, Result};
|
||||
use chrono::{Datelike, Duration};
|
||||
use crunchyroll_rs::media::{SkipEvents, Stream, StreamData, Subtitle};
|
||||
use crunchyroll_rs::media::{Resolution, SkipEvents, Stream, StreamData, Subtitle};
|
||||
use crunchyroll_rs::{Concert, Episode, Locale, MediaCollection, Movie, MusicVideo};
|
||||
use log::{debug, info};
|
||||
use std::cmp::Ordering;
|
||||
|
|
@ -12,7 +12,6 @@ use std::collections::BTreeMap;
|
|||
use std::env;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
||||
#[allow(dead_code)]
|
||||
#[derive(Clone)]
|
||||
pub struct SingleFormat {
|
||||
pub identifier: String,
|
||||
|
|
@ -168,19 +167,18 @@ impl SingleFormat {
|
|||
|
||||
pub async fn stream(&self) -> Result<Stream> {
|
||||
let stream = match &self.source {
|
||||
MediaCollection::Episode(e) => e.stream_maybe_without_drm().await,
|
||||
MediaCollection::Movie(m) => m.stream_maybe_without_drm().await,
|
||||
MediaCollection::MusicVideo(mv) => mv.stream_maybe_without_drm().await,
|
||||
MediaCollection::Concert(c) => c.stream_maybe_without_drm().await,
|
||||
MediaCollection::Episode(e) => e.stream_maybe_without_drm().await?,
|
||||
MediaCollection::Movie(m) => m.stream_maybe_without_drm().await?,
|
||||
MediaCollection::MusicVideo(mv) => mv.stream_maybe_without_drm().await?,
|
||||
MediaCollection::Concert(c) => c.stream_maybe_without_drm().await?,
|
||||
_ => unreachable!(),
|
||||
};
|
||||
|
||||
if let Err(crunchyroll_rs::error::Error::Request { message, .. }) = &stream {
|
||||
if message.starts_with("TOO_MANY_ACTIVE_STREAMS") {
|
||||
bail!("Too many active/parallel streams. Please close at least one stream you're watching and try again")
|
||||
}
|
||||
};
|
||||
Ok(stream?)
|
||||
if stream.session.uses_stream_limits {
|
||||
bail!("Found a stream which probably uses DRM. DRM downloads aren't supported")
|
||||
}
|
||||
|
||||
Ok(stream)
|
||||
}
|
||||
|
||||
pub async fn skip_events(&self) -> Result<Option<SkipEvents>> {
|
||||
|
|
@ -348,7 +346,6 @@ impl Iterator for SingleFormatCollectionIterator {
|
|||
}
|
||||
}
|
||||
|
||||
#[allow(dead_code)]
|
||||
#[derive(Clone)]
|
||||
pub struct Format {
|
||||
pub title: String,
|
||||
|
|
@ -356,6 +353,8 @@ pub struct Format {
|
|||
|
||||
pub locales: Vec<(Locale, Vec<Locale>)>,
|
||||
|
||||
// deprecated
|
||||
pub resolution: Resolution,
|
||||
pub width: u64,
|
||||
pub height: u64,
|
||||
pub fps: f64,
|
||||
|
|
@ -401,6 +400,7 @@ impl Format {
|
|||
title: first_format.title,
|
||||
description: first_format.description,
|
||||
locales,
|
||||
resolution: first_stream.resolution().unwrap(),
|
||||
width: first_stream.resolution().unwrap().width,
|
||||
height: first_stream.resolution().unwrap().height,
|
||||
fps: first_stream.fps().unwrap(),
|
||||
|
|
@ -446,13 +446,17 @@ impl Format {
|
|||
universal,
|
||||
),
|
||||
)
|
||||
.replace(
|
||||
"{resolution}",
|
||||
&sanitize(self.resolution.to_string(), true, universal),
|
||||
)
|
||||
.replace(
|
||||
"{width}",
|
||||
&sanitize(self.width.to_string(), true, universal),
|
||||
&sanitize(self.resolution.width.to_string(), true, universal),
|
||||
)
|
||||
.replace(
|
||||
"{height}",
|
||||
&sanitize(self.height.to_string(), true, universal),
|
||||
&sanitize(self.resolution.height.to_string(), true, universal),
|
||||
)
|
||||
.replace("{series_id}", &sanitize(&self.series_id, true, universal))
|
||||
.replace(
|
||||
|
|
@ -526,33 +530,7 @@ impl Format {
|
|||
),
|
||||
);
|
||||
|
||||
let mut path = PathBuf::from(path);
|
||||
|
||||
// make sure that every path section has a maximum of 255 characters
|
||||
if path.file_name().unwrap_or_default().to_string_lossy().len() > 255 {
|
||||
let name = path
|
||||
.file_stem()
|
||||
.unwrap_or_default()
|
||||
.to_string_lossy()
|
||||
.to_string();
|
||||
let ext = path
|
||||
.extension()
|
||||
.unwrap_or_default()
|
||||
.to_string_lossy()
|
||||
.to_string();
|
||||
if ext != name {
|
||||
path.set_file_name(format!("{}.{}", &name[..(255 - ext.len() - 1)], ext))
|
||||
}
|
||||
}
|
||||
path.iter()
|
||||
.map(|s| {
|
||||
if s.len() > 255 {
|
||||
s.to_string_lossy()[..255].to_string()
|
||||
} else {
|
||||
s.to_string_lossy().to_string()
|
||||
}
|
||||
})
|
||||
.collect()
|
||||
PathBuf::from(path)
|
||||
}
|
||||
|
||||
pub fn visual_output(&self, dst: &Path) {
|
||||
|
|
@ -588,7 +566,7 @@ impl Format {
|
|||
.collect::<Vec<String>>()
|
||||
.join(", ")
|
||||
);
|
||||
tab_info!("Resolution: {}x{}", self.height, self.width);
|
||||
tab_info!("Resolution: {}", self.resolution);
|
||||
tab_info!("FPS: {:.2}", self.fps)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ pub mod context;
|
|||
pub mod download;
|
||||
pub mod ffmpeg;
|
||||
pub mod filter;
|
||||
pub mod fmt;
|
||||
pub mod format;
|
||||
pub mod interactive_select;
|
||||
pub mod locale;
|
||||
|
|
@ -11,5 +10,4 @@ pub mod log;
|
|||
pub mod os;
|
||||
pub mod parse;
|
||||
pub mod rate_limit;
|
||||
pub mod sync;
|
||||
pub mod video;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ pub fn temp_directory() -> PathBuf {
|
|||
}
|
||||
|
||||
/// Any tempfile should be created with this function. The prefix and directory of every file
|
||||
/// created with this function stays the same which is helpful to query all existing tempfiles and
|
||||
/// created with this method stays the same which is helpful to query all existing tempfiles and
|
||||
/// e.g. remove them in a case of ctrl-c. Having one function also good to prevent mistakes like
|
||||
/// setting the wrong prefix if done manually.
|
||||
pub fn tempfile<S: AsRef<str>>(suffix: S) -> io::Result<NamedTempFile> {
|
||||
|
|
|
|||
|
|
@ -1,432 +0,0 @@
|
|||
use std::io::Read;
|
||||
use std::process::Stdio;
|
||||
use std::{
|
||||
cmp,
|
||||
collections::{HashMap, HashSet},
|
||||
mem,
|
||||
ops::Not,
|
||||
path::Path,
|
||||
process::Command,
|
||||
};
|
||||
|
||||
use chrono::TimeDelta;
|
||||
use crunchyroll_rs::Locale;
|
||||
use log::debug;
|
||||
use tempfile::TempPath;
|
||||
|
||||
use anyhow::{bail, Result};
|
||||
use rusty_chromaprint::{Configuration, Fingerprinter};
|
||||
|
||||
use super::fmt::format_time_delta;
|
||||
|
||||
pub struct SyncAudio {
|
||||
pub format_id: usize,
|
||||
pub path: TempPath,
|
||||
pub locale: Locale,
|
||||
pub sample_rate: u32,
|
||||
pub video_idx: usize,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
struct TimeRange {
|
||||
start: f64,
|
||||
end: f64,
|
||||
}
|
||||
|
||||
pub fn sync_audios(
|
||||
available_audios: &Vec<SyncAudio>,
|
||||
sync_tolerance: u32,
|
||||
sync_precision: u32,
|
||||
) -> Result<Option<HashMap<usize, TimeDelta>>> {
|
||||
let mut result: HashMap<usize, TimeDelta> = HashMap::new();
|
||||
|
||||
let mut sync_audios = vec![];
|
||||
let mut chromaprints = HashMap::new();
|
||||
let mut formats = HashSet::new();
|
||||
for audio in available_audios {
|
||||
if formats.contains(&audio.format_id) {
|
||||
continue;
|
||||
}
|
||||
formats.insert(audio.format_id);
|
||||
sync_audios.push((audio.format_id, &audio.path, audio.sample_rate));
|
||||
chromaprints.insert(
|
||||
audio.format_id,
|
||||
generate_chromaprint(
|
||||
&audio.path,
|
||||
audio.sample_rate,
|
||||
&TimeDelta::zero(),
|
||||
&TimeDelta::zero(),
|
||||
&TimeDelta::zero(),
|
||||
)?,
|
||||
);
|
||||
}
|
||||
sync_audios.sort_by_key(|sync_audio| chromaprints.get(&sync_audio.0).unwrap().len());
|
||||
|
||||
let base_audio = sync_audios.remove(0);
|
||||
|
||||
let mut start = f64::MAX;
|
||||
let mut end = f64::MIN;
|
||||
let mut initial_offsets = HashMap::new();
|
||||
for audio in &sync_audios {
|
||||
debug!(
|
||||
"Initial comparison of format {} to {}",
|
||||
audio.0, &base_audio.0
|
||||
);
|
||||
|
||||
let (lhs_ranges, rhs_ranges) = compare_chromaprints(
|
||||
chromaprints.get(&base_audio.0).unwrap(),
|
||||
chromaprints.get(&audio.0).unwrap(),
|
||||
sync_tolerance,
|
||||
);
|
||||
if lhs_ranges.is_empty() || rhs_ranges.is_empty() {
|
||||
bail!(
|
||||
"Failed to sync videos, couldn't find matching audio parts between format {} and {}",
|
||||
base_audio.0 + 1,
|
||||
audio.0 + 1
|
||||
);
|
||||
}
|
||||
let lhs_range = lhs_ranges[0];
|
||||
let rhs_range = rhs_ranges[0];
|
||||
start = start.min(lhs_range.start);
|
||||
end = end.max(lhs_range.end);
|
||||
start = start.min(rhs_range.start);
|
||||
end = end.max(rhs_range.end);
|
||||
let offset = TimeDelta::milliseconds(((rhs_range.start - lhs_range.start) * 1000.0) as i64);
|
||||
initial_offsets.insert(audio.0, TimeDelta::zero().checked_sub(&offset).unwrap());
|
||||
debug!(
|
||||
"Found initial offset of {}ms ({} - {} {}s) ({} - {} {}s) for format {} to {}",
|
||||
offset.num_milliseconds(),
|
||||
lhs_range.start,
|
||||
lhs_range.end,
|
||||
lhs_range.end - lhs_range.start,
|
||||
rhs_range.start,
|
||||
rhs_range.end,
|
||||
rhs_range.end - rhs_range.start,
|
||||
audio.0,
|
||||
base_audio.0
|
||||
);
|
||||
}
|
||||
|
||||
debug!(
|
||||
"Found matching audio parts at {} - {}, narrowing search",
|
||||
start, end
|
||||
);
|
||||
|
||||
let start = TimeDelta::milliseconds((start * 1000.0) as i64 - 20000);
|
||||
let end = TimeDelta::milliseconds((end * 1000.0) as i64 + 20000);
|
||||
|
||||
for sync_audio in &sync_audios {
|
||||
let chromaprint = generate_chromaprint(
|
||||
sync_audio.1,
|
||||
sync_audio.2,
|
||||
&start,
|
||||
&end,
|
||||
initial_offsets.get(&sync_audio.0).unwrap(),
|
||||
)?;
|
||||
chromaprints.insert(sync_audio.0, chromaprint);
|
||||
}
|
||||
|
||||
let mut runs: HashMap<usize, i64> = HashMap::new();
|
||||
let iterator_range_limits: i64 = 2 ^ sync_precision as i64;
|
||||
for i in -iterator_range_limits..=iterator_range_limits {
|
||||
let base_offset = TimeDelta::milliseconds(
|
||||
((0.128 / iterator_range_limits as f64 * i as f64) * 1000.0) as i64,
|
||||
);
|
||||
chromaprints.insert(
|
||||
base_audio.0,
|
||||
generate_chromaprint(base_audio.1, base_audio.2, &start, &end, &base_offset)?,
|
||||
);
|
||||
for audio in &sync_audios {
|
||||
let initial_offset = initial_offsets.get(&audio.0).copied().unwrap();
|
||||
let offset = find_offset(
|
||||
(&base_audio.0, chromaprints.get(&base_audio.0).unwrap()),
|
||||
&base_offset,
|
||||
(&audio.0, chromaprints.get(&audio.0).unwrap()),
|
||||
&initial_offset,
|
||||
&start,
|
||||
sync_tolerance,
|
||||
);
|
||||
if offset.is_none() {
|
||||
continue;
|
||||
}
|
||||
let offset = offset.unwrap();
|
||||
|
||||
result.insert(
|
||||
audio.0,
|
||||
result
|
||||
.get(&audio.0)
|
||||
.copied()
|
||||
.unwrap_or_default()
|
||||
.checked_add(&offset)
|
||||
.unwrap(),
|
||||
);
|
||||
runs.insert(audio.0, runs.get(&audio.0).copied().unwrap_or_default() + 1);
|
||||
}
|
||||
}
|
||||
let mut result: HashMap<usize, TimeDelta> = result
|
||||
.iter()
|
||||
.map(|(format_id, offset)| {
|
||||
(
|
||||
*format_id,
|
||||
TimeDelta::milliseconds(
|
||||
offset.num_milliseconds() / runs.get(format_id).copied().unwrap(),
|
||||
),
|
||||
)
|
||||
})
|
||||
.collect();
|
||||
result.insert(base_audio.0, TimeDelta::milliseconds(0));
|
||||
|
||||
Ok(Some(result))
|
||||
}
|
||||
|
||||
fn find_offset(
|
||||
lhs: (&usize, &Vec<u32>),
|
||||
lhs_shift: &TimeDelta,
|
||||
rhs: (&usize, &Vec<u32>),
|
||||
rhs_shift: &TimeDelta,
|
||||
start: &TimeDelta,
|
||||
sync_tolerance: u32,
|
||||
) -> Option<TimeDelta> {
|
||||
let (lhs_ranges, rhs_ranges) = compare_chromaprints(lhs.1, rhs.1, sync_tolerance);
|
||||
if lhs_ranges.is_empty() || rhs_ranges.is_empty() {
|
||||
return None;
|
||||
}
|
||||
let lhs_range = lhs_ranges[0];
|
||||
let rhs_range = rhs_ranges[0];
|
||||
let offset = rhs_range.end - lhs_range.end;
|
||||
let offset = TimeDelta::milliseconds((offset * 1000.0) as i64)
|
||||
.checked_add(lhs_shift)?
|
||||
.checked_sub(rhs_shift)?;
|
||||
debug!(
|
||||
"Found offset of {}ms ({} - {} {}s) ({} - {} {}s) for format {} to {}",
|
||||
offset.num_milliseconds(),
|
||||
lhs_range.start + start.num_milliseconds() as f64 / 1000.0,
|
||||
lhs_range.end + start.num_milliseconds() as f64 / 1000.0,
|
||||
lhs_range.end - lhs_range.start,
|
||||
rhs_range.start + start.num_milliseconds() as f64 / 1000.0,
|
||||
rhs_range.end + start.num_milliseconds() as f64 / 1000.0,
|
||||
rhs_range.end - rhs_range.start,
|
||||
rhs.0,
|
||||
lhs.0
|
||||
);
|
||||
Some(offset)
|
||||
}
|
||||
|
||||
fn generate_chromaprint(
|
||||
input_file: &Path,
|
||||
sample_rate: u32,
|
||||
start: &TimeDelta,
|
||||
end: &TimeDelta,
|
||||
offset: &TimeDelta,
|
||||
) -> Result<Vec<u32>> {
|
||||
let mut ss_argument: &TimeDelta = &start.checked_sub(offset).unwrap();
|
||||
let mut offset_argument = &TimeDelta::zero();
|
||||
if *offset < TimeDelta::zero() {
|
||||
ss_argument = start;
|
||||
offset_argument = offset;
|
||||
};
|
||||
|
||||
let mut printer = Fingerprinter::new(&Configuration::preset_test1());
|
||||
printer.start(sample_rate, 2)?;
|
||||
|
||||
let mut command = Command::new("ffmpeg");
|
||||
command
|
||||
.arg("-hide_banner")
|
||||
.arg("-y")
|
||||
.args(["-ss", format_time_delta(ss_argument).as_str()]);
|
||||
|
||||
if end.is_zero().not() {
|
||||
command.args(["-to", format_time_delta(end).as_str()]);
|
||||
}
|
||||
|
||||
command
|
||||
.args(["-itsoffset", format_time_delta(offset_argument).as_str()])
|
||||
.args(["-i", input_file.to_string_lossy().to_string().as_str()])
|
||||
.args(["-ac", "2"])
|
||||
.args([
|
||||
"-f",
|
||||
if cfg!(target_endian = "big") {
|
||||
"s16be"
|
||||
} else {
|
||||
"s16le"
|
||||
},
|
||||
])
|
||||
.arg("-");
|
||||
|
||||
let mut handle = command
|
||||
.stdout(Stdio::piped())
|
||||
.stderr(Stdio::piped())
|
||||
.spawn()?;
|
||||
|
||||
// the stdout is read in chunks because keeping all the raw audio data in memory would take up
|
||||
// a significant amount of space
|
||||
let mut stdout = handle.stdout.take().unwrap();
|
||||
let mut buf: [u8; 128_000] = [0; 128_000];
|
||||
while handle.try_wait()?.is_none() {
|
||||
loop {
|
||||
let read_bytes = stdout.read(&mut buf)?;
|
||||
if read_bytes == 0 {
|
||||
break;
|
||||
}
|
||||
let data: [i16; 64_000] = unsafe { mem::transmute(buf) };
|
||||
printer.consume(&data[0..(read_bytes / 2)])
|
||||
}
|
||||
}
|
||||
|
||||
if !handle.wait()?.success() {
|
||||
bail!("{}", std::io::read_to_string(handle.stderr.unwrap())?)
|
||||
}
|
||||
|
||||
printer.finish();
|
||||
return Ok(printer.fingerprint().into());
|
||||
}
|
||||
|
||||
fn compare_chromaprints(
|
||||
lhs_chromaprint: &Vec<u32>,
|
||||
rhs_chromaprint: &Vec<u32>,
|
||||
sync_tolerance: u32,
|
||||
) -> (Vec<TimeRange>, Vec<TimeRange>) {
|
||||
let lhs_inverse_index = create_inverse_index(lhs_chromaprint);
|
||||
let rhs_inverse_index = create_inverse_index(rhs_chromaprint);
|
||||
|
||||
let mut possible_shifts = HashSet::new();
|
||||
for lhs_pair in lhs_inverse_index {
|
||||
let original_point = lhs_pair.0;
|
||||
for i in -2..=2 {
|
||||
let modified_point = (original_point as i32 + i) as u32;
|
||||
if rhs_inverse_index.contains_key(&modified_point) {
|
||||
let rhs_index = rhs_inverse_index.get(&modified_point).copied().unwrap();
|
||||
possible_shifts.insert(rhs_index as i32 - lhs_pair.1 as i32);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let mut all_lhs_time_ranges = vec![];
|
||||
let mut all_rhs_time_ranges = vec![];
|
||||
for shift_amount in possible_shifts {
|
||||
let time_range_pair = find_time_ranges(
|
||||
lhs_chromaprint,
|
||||
rhs_chromaprint,
|
||||
shift_amount,
|
||||
sync_tolerance,
|
||||
);
|
||||
if time_range_pair.is_none() {
|
||||
continue;
|
||||
}
|
||||
let (mut lhs_time_ranges, mut rhs_time_ranges) = time_range_pair.unwrap();
|
||||
let mut lhs_time_ranges: Vec<TimeRange> = lhs_time_ranges
|
||||
.drain(..)
|
||||
.filter(|time_range| {
|
||||
(20.0 < (time_range.end - time_range.start))
|
||||
&& ((time_range.end - time_range.start) < 180.0)
|
||||
&& time_range.end > 0.0
|
||||
})
|
||||
.collect();
|
||||
lhs_time_ranges.sort_by(|a, b| (b.end - b.start).total_cmp(&(a.end - a.start)));
|
||||
let mut rhs_time_ranges: Vec<TimeRange> = rhs_time_ranges
|
||||
.drain(..)
|
||||
.filter(|time_range| {
|
||||
(20.0 < (time_range.end - time_range.start))
|
||||
&& ((time_range.end - time_range.start) < 180.0)
|
||||
&& time_range.end > 0.0
|
||||
})
|
||||
.collect();
|
||||
rhs_time_ranges.sort_by(|a, b| (b.end - b.start).total_cmp(&(a.end - a.start)));
|
||||
if lhs_time_ranges.is_empty() || rhs_time_ranges.is_empty() {
|
||||
continue;
|
||||
}
|
||||
|
||||
all_lhs_time_ranges.push(lhs_time_ranges[0]);
|
||||
all_rhs_time_ranges.push(rhs_time_ranges[0]);
|
||||
}
|
||||
all_lhs_time_ranges.sort_by(|a, b| (a.end - a.start).total_cmp(&(b.end - b.start)));
|
||||
all_lhs_time_ranges.reverse();
|
||||
all_rhs_time_ranges.sort_by(|a, b| (a.end - a.start).total_cmp(&(b.end - b.start)));
|
||||
all_rhs_time_ranges.reverse();
|
||||
|
||||
(all_lhs_time_ranges, all_rhs_time_ranges)
|
||||
}
|
||||
|
||||
fn create_inverse_index(chromaprint: &Vec<u32>) -> HashMap<u32, usize> {
|
||||
let mut inverse_index = HashMap::with_capacity(chromaprint.capacity());
|
||||
for (i, fingerprint) in chromaprint.iter().enumerate().take(chromaprint.capacity()) {
|
||||
inverse_index.insert(*fingerprint, i);
|
||||
}
|
||||
inverse_index
|
||||
}
|
||||
|
||||
fn find_time_ranges(
|
||||
lhs_chromaprint: &[u32],
|
||||
rhs_chromaprint: &[u32],
|
||||
shift_amount: i32,
|
||||
sync_tolerance: u32,
|
||||
) -> Option<(Vec<TimeRange>, Vec<TimeRange>)> {
|
||||
let mut lhs_shift: i32 = 0;
|
||||
let mut rhs_shift: i32 = 0;
|
||||
if shift_amount < 0 {
|
||||
lhs_shift -= shift_amount;
|
||||
} else {
|
||||
rhs_shift += shift_amount;
|
||||
}
|
||||
|
||||
let mut lhs_matching_timestamps = vec![];
|
||||
let mut rhs_matching_timestamps = vec![];
|
||||
let upper_limit =
|
||||
cmp::min(lhs_chromaprint.len(), rhs_chromaprint.len()) as i32 - shift_amount.abs();
|
||||
|
||||
for i in 0..upper_limit {
|
||||
let lhs_position = i + lhs_shift;
|
||||
let rhs_position = i + rhs_shift;
|
||||
let difference = (lhs_chromaprint[lhs_position as usize]
|
||||
^ rhs_chromaprint[rhs_position as usize])
|
||||
.count_ones();
|
||||
|
||||
if difference > sync_tolerance {
|
||||
continue;
|
||||
}
|
||||
|
||||
lhs_matching_timestamps.push(lhs_position as f64 * 0.128);
|
||||
rhs_matching_timestamps.push(rhs_position as f64 * 0.128);
|
||||
}
|
||||
lhs_matching_timestamps.push(f64::MAX);
|
||||
rhs_matching_timestamps.push(f64::MAX);
|
||||
|
||||
let lhs_time_ranges = timestamps_to_ranges(lhs_matching_timestamps);
|
||||
lhs_time_ranges.as_ref()?;
|
||||
let lhs_time_ranges = lhs_time_ranges.unwrap();
|
||||
let rhs_time_ranges = timestamps_to_ranges(rhs_matching_timestamps).unwrap();
|
||||
|
||||
Some((lhs_time_ranges, rhs_time_ranges))
|
||||
}
|
||||
|
||||
fn timestamps_to_ranges(mut timestamps: Vec<f64>) -> Option<Vec<TimeRange>> {
|
||||
if timestamps.is_empty() {
|
||||
return None;
|
||||
}
|
||||
|
||||
timestamps.sort_by(|a, b| a.total_cmp(b));
|
||||
|
||||
let mut time_ranges = vec![];
|
||||
let mut current_range = TimeRange {
|
||||
start: timestamps[0],
|
||||
end: timestamps[0],
|
||||
};
|
||||
|
||||
for i in 0..timestamps.len() - 1 {
|
||||
let current = timestamps[i];
|
||||
let next = timestamps[i + 1];
|
||||
if next - current <= 1.0 {
|
||||
current_range.end = next;
|
||||
continue;
|
||||
}
|
||||
|
||||
time_ranges.push(current_range);
|
||||
current_range.start = next;
|
||||
current_range.end = next;
|
||||
}
|
||||
if !time_ranges.is_empty() {
|
||||
Some(time_ranges)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
|
@ -2,15 +2,31 @@ use anyhow::{bail, Result};
|
|||
use crunchyroll_rs::media::{Resolution, Stream, StreamData};
|
||||
use crunchyroll_rs::Locale;
|
||||
|
||||
pub async fn stream_data_from_stream(
|
||||
pub async fn variant_data_from_stream(
|
||||
stream: &Stream,
|
||||
resolution: &Resolution,
|
||||
hardsub_subtitle: Option<Locale>,
|
||||
subtitle: Option<Locale>,
|
||||
) -> Result<Option<(StreamData, StreamData, bool)>> {
|
||||
let (hardsub_locale, mut contains_hardsub) = if hardsub_subtitle.is_some() {
|
||||
(hardsub_subtitle, true)
|
||||
// sometimes Crunchyroll marks episodes without real subtitles that they have subtitles and
|
||||
// reports that only hardsub episode are existing. the following lines are trying to prevent
|
||||
// potential errors which might get caused by this incorrect reporting
|
||||
// (https://github.com/crunchy-labs/crunchy-cli/issues/231)
|
||||
let mut hardsub_locales: Vec<Locale> = stream.hard_subs.keys().cloned().collect();
|
||||
let (hardsub_locale, mut contains_hardsub) = if !hardsub_locales
|
||||
.contains(&Locale::Custom("".to_string()))
|
||||
&& !hardsub_locales.contains(&Locale::Custom(":".to_string()))
|
||||
{
|
||||
// if only one hardsub locale exists, assume that this stream doesn't really contains hardsubs
|
||||
if hardsub_locales.len() == 1 {
|
||||
(Some(hardsub_locales.remove(0)), false)
|
||||
} else {
|
||||
// fallback to `None`. this should trigger an error message in `stream.dash_streaming_data`
|
||||
// that the requested stream is not available
|
||||
(None, false)
|
||||
}
|
||||
} else {
|
||||
(None, false)
|
||||
let hardsubs_requested = subtitle.is_some();
|
||||
(subtitle, hardsubs_requested)
|
||||
};
|
||||
|
||||
let (mut videos, mut audios) = match stream.stream_data(hardsub_locale).await {
|
||||
|
|
@ -27,11 +43,6 @@ pub async fn stream_data_from_stream(
|
|||
}
|
||||
}
|
||||
.unwrap();
|
||||
|
||||
if videos.iter().any(|v| v.drm.is_some()) || audios.iter().any(|v| v.drm.is_some()) {
|
||||
bail!("Stream is DRM protected")
|
||||
}
|
||||
|
||||
videos.sort_by(|a, b| a.bandwidth.cmp(&b.bandwidth).reverse());
|
||||
audios.sort_by(|a, b| a.bandwidth.cmp(&b.bandwidth).reverse());
|
||||
|
||||
|
|
|
|||
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -2,11 +2,11 @@
|
|||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1710534455,
|
||||
"narHash": "sha256-huQT4Xs0y4EeFKn2BTBVYgEwJSv8SDlm82uWgMnCMmI=",
|
||||
"lastModified": 1707877513,
|
||||
"narHash": "sha256-sp0w2apswd3wv0sAEF7StOGHkns3XUQaO5erhWFZWXk=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "9af9c1c87ed3e3ed271934cb896e0cdd33dae212",
|
||||
"rev": "89653a03e0915e4a872788d10680e7eec92f8600",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -41,11 +41,11 @@
|
|||
"systems": "systems"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1710146030,
|
||||
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
||||
"lastModified": 1705309234,
|
||||
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
||||
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
};
|
||||
|
||||
buildNoDefaultFeatures = true;
|
||||
buildFeatures = [ "openssl-tls" ];
|
||||
buildFeatures = [ "openssl" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgs.pkg-config
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue