mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-09-25 05:16:19 -07:00
- Pages now start with setup and usage, and reference material is in compact tables - Configuration reference gives each config block a short explanation and a key/default table - Internal detail removed from user pages, and docs that had drifted from current behavior fixed - The status line shows today's date, set on the client, instead of the page's last-updated date - Add changelog fragment
74 lines
2.7 KiB
Markdown
74 lines
2.7 KiB
Markdown
# Feature demos
|
|
|
|
Short recordings from real playback sessions.
|
|
|
|
_Yomitan_ is the pop-up dictionary. _Jimaku_ is a community subtitle database. _alass_ and _ffsubsync_ retime subtitles against the audio. _Jellyfin_ is a self-hosted media server. A _texthooker_ is a web page that mirrors the current subtitle as selectable text.
|
|
|
|
<script setup>
|
|
import { withBase } from 'vitepress';
|
|
|
|
const v = '20260819-1';
|
|
</script>
|
|
|
|
## Anki card mining and enrichment
|
|
|
|
Mine a card from Yomitan or straight from a subtitle line. SubMiner attaches the sentence, an audio clip cut to the line timing, and a screenshot.
|
|
|
|
<video controls playsinline preload="metadata" :poster="withBase(`/assets/minecard-poster.jpg?v=${v}`)">
|
|
<source :src="withBase(`/assets/minecard.webm?v=${v}`)" type="video/webm" />
|
|
<source :src="withBase(`/assets/minecard.mp4?v=${v}`)" type="video/mp4" />
|
|
<a :href="withBase(`/assets/minecard.webm?v=${v}`)" target="_blank" rel="noreferrer">
|
|
<img :src="withBase(`/assets/minecard.webp?v=${v}`)" alt="Animated demo of mining a card" style="width: 100%; height: auto;" />
|
|
</a>
|
|
</video>
|
|
|
|
## Subtitle download and sync
|
|
|
|
Search Jimaku, download a track, then retime it with alass or ffsubsync without leaving SubMiner.
|
|
|
|
<!-- <video controls playsinline preload="metadata" :poster="withBase(`/assets/demos/subtitle-sync-poster.jpg?v=${v}`)">
|
|
<source :src="withBase(`/assets/demos/subtitle-sync.webm?v=${v}`)" type="video/webm" />
|
|
<source :src="withBase(`/assets/demos/subtitle-sync.mp4?v=${v}`)" type="video/mp4" />
|
|
</video> -->
|
|
|
|
::: info VIDEO COMING SOON
|
|
:::
|
|
|
|
## Jellyfin integration
|
|
|
|
Browse your Jellyfin library and play from SubMiner, or cast to SubMiner from another Jellyfin client. Watch progress syncs back to the server.
|
|
|
|
<!-- <video controls playsinline preload="metadata" :poster="withBase(`/assets/demos/jellyfin-poster.jpg?v=${v}`)">
|
|
<source :src="withBase(`/assets/demos/jellyfin.webm?v=${v}`)" type="video/webm" />
|
|
<source :src="withBase(`/assets/demos/jellyfin.mp4?v=${v}`)" type="video/mp4" />
|
|
</video> -->
|
|
|
|
::: info VIDEO COMING SOON
|
|
:::
|
|
|
|
## Texthooker
|
|
|
|
Mirror subtitles to an external texthooker page so browser extensions can read them while the overlay runs.
|
|
|
|
<!-- <video controls playsinline preload="metadata" :poster="withBase(`/assets/demos/texthooker-poster.jpg?v=${v}`)">
|
|
<source :src="withBase(`/assets/demos/texthooker.webm?v=${v}`)" type="video/webm" />
|
|
<source :src="withBase(`/assets/demos/texthooker.mp4?v=${v}`)" type="video/mp4" />
|
|
</video> -->
|
|
|
|
::: info VIDEO COMING SOON
|
|
:::
|
|
|
|
<style>
|
|
video {
|
|
width: 100%;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--vp-c-divider);
|
|
box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
|
|
margin: 0.75rem 0 2.5rem;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 2.5rem !important;
|
|
}
|
|
</style>
|