mpv2oboeru

mpv helpers to create flashcards from movies and TV shows
git clone anongit@rnpnr.xyz:mpv2oboeru.git
Log | Files | Refs | Feed | README | LICENSE

Commit: c8a8e735c85326b02bae4bd6eb866629f5623cd8
Parent: bd88f4039e94b4dd972102c6731d72850acc5321
Author: Randy Palamar
Date:   Tue, 24 May 2022 21:26:30 -0600

remove .github nonsense

Diffstat:
D.github/FUNDING.yml | 3---
D.github/ISSUE_TEMPLATE/issue.md | 36------------------------------------
D.github/RELEASE/Makefile | 27---------------------------
D.github/RELEASE/subs2srs.conf | 158-------------------------------------------------------------------------------
4 files changed, 0 insertions(+), 224 deletions(-)

diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -patreon: tatsumoto_ren diff --git a/.github/ISSUE_TEMPLATE/issue.md b/.github/ISSUE_TEMPLATE/issue.md @@ -1,36 +0,0 @@ ---- -name: Issue -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -- The add-on crashes? -- The add-on stopped working? -- Have a feature request? - -Please ask on https://tatsumoto.neocities.org/blog/join-our-community.html instead. It is easier for our members to provide support over in the chats. Thank you! - -Don't forget to provide the following information: - -**Environment** - -1) OS name [e.g. Parabola, Debian] -2) OS version -3) mpv version -4) Logs -5) Screenshots, if applicable - -**Describe the bug** -A description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1) Press x '...' -2) Click on '....' -3) See error - -**Expected behavior** -A description of what you expected to happen. diff --git a/.github/RELEASE/Makefile b/.github/RELEASE/Makefile @@ -1,27 +0,0 @@ -PROJECT = mpvacious -VERSION = v0.18 -MD2HTML = md2html --github --full-html -ZIP = $(PROJECT)_$(VERSION).zip -BRANCH = remotes/origin/master -DOCS = README_$(VERSION).html -RELEASE_DIR = .github/RELEASE - -.PHONY: all clean docs - -all: $(ZIP) -docs: $(DOCS) - -$(ZIP): $(DOCS) - cd -- "$$(git rev-parse --show-toplevel)" && \ - git archive \ - --prefix=$(PROJECT)_$(VERSION)/ \ - --format=zip \ - -o $(RELEASE_DIR)/$@ \ - --add-file=$(RELEASE_DIR)/$(DOCS) \ - $(BRANCH) \ - -$(DOCS): - git show "$(BRANCH):README.md" | $(MD2HTML) -o $@ - -clean: - rm -- $(ZIP) $(DOCS) diff --git a/.github/RELEASE/subs2srs.conf b/.github/RELEASE/subs2srs.conf @@ -1,158 +0,0 @@ -#################### -# General settings # -#################### - -# Anki deck for new cards. Subdecks are supported. -deck_name=Bank::subs2srs - -# Model names are listed in `Tools -> Manage note types` menu in Anki. -model_name=Japanese sentences - -# Field names as they appear in the selected note type. -# If you set `audio_field` or `image_field` empty, -# the corresponding media file will not be created. -sentence_field=SentKanji -audio_field=SentAudio -image_field=Image - -# The tag(s) added to new notes. Spaces separate multiple tags. -# Leave nothing after `=` to disable tagging completely. -# The following substitutions are supported: -# %n - the name of the video -# %t - timestamp -# %d - episode number (if none, returns nothing) -# %e - SUBS2SRS_TAGS environment variable -note_tag=subs2srs -#note_tag=%n %t %e -#note_tag= - -# Size of the font used in the menu -menu_font_size=24 - -################################################ -# Toggleables. Possible values: `yes` or `no`. # -################################################ - -# Use ffmpeg -# If you encounter problems making Anki cards, setting this to `yes` should fix them. -# You need to install ffmpeg and add it to the PATH first. -# https://wiki.archlinux.org/title/FFmpeg -# https://www.ffmpeg.org/download.html -use_ffmpeg=no - -# Automatically create the deck for new cards (see deck_name option) -create_deck=yes - -# Allow making notes with the same sentence field. -allow_duplicates=no - -# When mpv starts, automatically copy subs to the clipboard as they appear on screen. -# This option can be also toggled in the addon's OSD menu. -autoclip=no - -# Remove all spaces from the subtitle text. -# Set this to "yes" for languages without spaces like Japanese. -nuke_spaces=yes - -# if set to `yes`, the volume of the outputted audio file -# depends on the volume of the player at the time of export -tie_volumes=no - -# Remove text in parentheses that may interfere with Yomichan -# before copying subtitles to the clipboard -clipboard_trim_enabled=yes - -# Add media to fields before or after existing data -append_media=yes - -# Remove text in brackets before substituting %n into tag -tag_nuke_brackets=yes - -# Remove text in brackets before substituting %n into tag -tag_nuke_parentheses=no - -# Remove the episode number before substituting %n into tag -tag_del_episode_num=yes - -# Remove everything after the episode number before substituting %n into tag -# Does nothing if the previous option tag_del_episode_num is disabled. -tag_del_after_episode_num=yes - -# Convert filename to lowercase for tagging. -tag_filename_lowercase=no - -# Lets you disable anki browser manipulation by mpvacious. -disable_gui_browse=no - -################## -# Image settings # -################## - -# Snapshot format. -# Do not switch to JPG unless your computer doesn't support WebP. -snapshot_format=webp -#snapshot_format=jpg - -# Quality of produced image files. 0 = lowest, 100=highest. -snapshot_quality=15 - -# Image dimensions -# If either (but not both) of the width or height parameters is -2, -# the value will be calculated preserving the aspect-ratio. -snapshot_width=-2 -snapshot_height=200 - -################## -# Audio settings # -################## - -# Audio format. -# Do not switch to MP3 unless your computer doesn't support Opus. -audio_format=opus -#audio_format=mp3 - -# Sane values are 16k-32k for opus, 64k-128k for mp3. -audio_bitrate=18k - -# Set a pad to the dialog timings. 0.5 = half a second -audio_padding=0.0 -#audio_padding=0.5 - -####################################### -# Forvo support (Yomichan users only) # -####################################### - -# yes - fetch audio from Forvo if Yomichan couldn't find the audio (default) -# always - always fetch audio from Forvo and replace the audio added by Yomichan -# no - never use Forvo -use_forvo=yes - -# Vocab field should be equal to {expression} field in Yomichan -vocab_field=VocabKanji - -# Vocab Audio field should be equal to {audio} field in Yomichan -vocab_audio_field=VocabAudio - -####################################### -# Misc info # -####################################### - -# By enabling miscinfo you can add certain context information to your cards. -miscinfo_enable=yes - -# Field name -miscinfo_field=Notes - -# Format string used to fill the miscinfo_field. -# It supports the same substitutions as note_tag. HTML is supported. -miscinfo_format=%n EP%d (%t) -#miscinfo_format=From <b>mpvacious</b> %n at %t. - -####################################### -# Custom encoding arguments # -####################################### - -# By default, set to remove silence from audio clips. - -ffmpeg_audio_args=-af silenceremove=1:0:-50dB -mpv_audio_args=--af-append=silenceremove=1:0:-50dB