Nagare
Get a mineable stream of subtitles from Jellyfin, Emby, and Plex. Enhance Anki cards with Sentence Audio, Animated (optional) Screenshot, and more.
File Explorer
- card_enhancement.png
- card_example.mp4
- icon.png
- nagare.png
- dev-docker.yml
- release.yml
- FUNDING.yml
- abs_openapi.json
- ANKI_BEACON_INTEGRATION.md
- emby_openapi.json
- jellyfin-openapi-stable.json
- plex_openapi.json
- .gitkeep
- plex_ws_probe.rs
- favicon.ico
- favicon.svg
- icon-192.png
- icon-512.png
- icons.svg
- manifest.webmanifest
- api.js
- AudioTrackModal.svelte
- AudioTrackSelector.svelte
- ConfigPage.svelte
- EnrichDialog.svelte
- HistoryPage.svelte
- MediaRemote.svelte
- SessionSelector.svelte
- stores.js
- SubtitleTimeline.svelte
- ToastContainer.svelte
- utils.js
- websocket.js
- yomitan.js
- app.css
- App.svelte
- main.js
- .gitignore
- index.html
- jsconfig.json
- package-lock.json
- package.json
- README.md
- svelte.config.js
- vite.config.js
- audiobookshelf.rs
- mediabrowser.rs
- mod.rs
- plex.rs
- anki.rs
- api.rs
- config.rs
- main.rs
- media.rs
- mining.rs
- plex_websocket.rs
- session.rs
- subtitle.rs
- tadoku.rs
- .dockerignore
- .gitignore
- .gitmodules
- audiobookshelf
- build.rs
- Cargo.lock
- Cargo.toml
- CLAUDE.md
- docker-compose.yml
- Dockerfile
- icon.ico
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo build
View Details ▼
cargo build
Compile a local package and all of its dependencies.
cargo {{[b|build]}}
Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
cargo {{[b|build]}} {{[-r|--release]}}
Build artifacts in release mode, with optimizations:
cargo {{[b|build]}} --locked
Require that `Cargo.lock` is up to date:
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
ffmpeg
View Details ▼
ffmpeg
Video conversion tool.
See also: `gst-launch-1.0`.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
Extract the sound from a video and save it as MP3:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
Transcode a FLAC file to Red Book CD format (44100kHz, 16bit):
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
Save a video as GIF, scaling the height to 1000px and setting framerate to 15:
