├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── build.gradle.kts ├── docs ├── img │ ├── intellij_gradle_refresh.png │ ├── intellij_import.png │ ├── intellij_open_project.png │ └── intellij_pick_build.png └── subkt │ ├── alltypes │ └── index.md │ ├── index.md │ ├── myaa.subkt.ass │ ├── -a-s-s-file │ │ ├── -init-.md │ │ ├── events-header.md │ │ ├── events.md │ │ ├── extra-data-header.md │ │ ├── file.md │ │ ├── index.md │ │ ├── line-pattern.md │ │ ├── parse.md │ │ ├── project-garbage-header.md │ │ ├── project-garbage.md │ │ ├── script-info-header.md │ │ ├── script-info.md │ │ ├── section-pattern.md │ │ ├── sections.md │ │ ├── serialize.md │ │ ├── styles-header.md │ │ └── styles.md │ ├── -a-s-s-serializer │ │ ├── deserialize.md │ │ ├── index.md │ │ └── serialize.md │ ├── -aegisub-project-garbage-section │ │ ├── -init-.md │ │ ├── active-line.md │ │ ├── audio-file.md │ │ ├── automation-scripts.md │ │ ├── export-encoding.md │ │ ├── export-filters.md │ │ ├── index.md │ │ ├── keyframes-file.md │ │ ├── last-style-storage.md │ │ ├── scroll-position.md │ │ ├── timecodes-file.md │ │ ├── video-a-r-mode.md │ │ ├── video-a-r-value.md │ │ ├── video-file.md │ │ ├── video-position.md │ │ └── video-zoom-percent.md │ ├── -collisions-serializer │ │ ├── -init-.md │ │ ├── deserialize.md │ │ ├── index.md │ │ └── serialize.md │ ├── -collisions │ │ ├── -n-o-r-m-a-l.md │ │ ├── -r-e-v-e-r-s-e.md │ │ ├── index.md │ │ └── value.md │ ├── -color-matrix-serializer │ │ ├── -init-.md │ │ ├── deserialize.md │ │ ├── index.md │ │ └── serialize.md │ ├── -color-matrix │ │ ├── -init-.md │ │ ├── -p-c_-f-c-c.md │ │ ├── -p-c_2020.md │ │ ├── -p-c_240-m.md │ │ ├── -p-c_601.md │ │ ├── -p-c_709.md │ │ ├── -t-v_-f-c-c.md │ │ ├── -t-v_2020.md │ │ ├── -t-v_240-m.md │ │ ├── -t-v_601.md │ │ ├── -t-v_709.md │ │ ├── index.md │ │ └── matrix.md │ ├── -custom-serializer │ │ ├── -init-.md │ │ ├── index.md │ │ └── serializer.md │ ├── -event-line-accessor │ │ ├── -a-c-t-o-r.md │ │ ├── -e-f-f-e-c-t.md │ │ ├── -e-n-d.md │ │ ├── -l-a-y-e-r.md │ │ ├── -m-a-r-g-i-n_-l.md │ │ ├── -m-a-r-g-i-n_-r.md │ │ ├── -m-a-r-g-i-n_-v.md │ │ ├── -s-t-a-r-t.md │ │ ├── -s-t-y-l-e.md │ │ ├── -t-e-x-t.md │ │ ├── index.md │ │ └── to-string.md │ ├── -event-line │ │ ├── -init-.md │ │ ├── actor.md │ │ ├── comment.md │ │ ├── effect.md │ │ ├── end.md │ │ ├── extra-data-pattern.md │ │ ├── extra-data.md │ │ ├── index.md │ │ ├── layer.md │ │ ├── margin-l.md │ │ ├── margin-r.md │ │ ├── margin-v.md │ │ ├── start.md │ │ ├── style.md │ │ ├── text.md │ │ └── type.md │ ├── -event-section │ │ ├── -init-.md │ │ ├── format.md │ │ ├── index.md │ │ ├── line-types.md │ │ └── serialize-contents.md │ ├── -extra-data.md │ ├── -format-section │ │ ├── -init-.md │ │ ├── format-string.md │ │ ├── format.md │ │ ├── index.md │ │ ├── line-class.md │ │ ├── line-types.md │ │ ├── lines.md │ │ ├── parse-line.md │ │ ├── parse.md │ │ ├── serialize-contents.md │ │ └── serialize-line.md │ ├── -key-val-field │ │ ├── -init-.md │ │ ├── index.md │ │ └── key.md │ ├── -key-val-line │ │ ├── -init-.md │ │ ├── index.md │ │ ├── to-string.md │ │ └── value.md │ ├── -key-val-section │ │ ├── -init-.md │ │ ├── -key-val-delegate │ │ │ ├── -init-.md │ │ │ ├── get-value.md │ │ │ ├── index.md │ │ │ └── set-value.md │ │ ├── index.md │ │ ├── parse.md │ │ ├── serialize-contents.md │ │ └── values.md │ ├── -line-accessor │ │ ├── field.md │ │ └── index.md │ ├── -line-field │ │ ├── -init-.md │ │ ├── field.md │ │ └── index.md │ ├── -line │ │ ├── -init-.md │ │ ├── index.md │ │ └── type.md │ ├── -map-line │ │ ├── -init-.md │ │ ├── clear.md │ │ ├── contains-key.md │ │ ├── contains-value.md │ │ ├── entries.md │ │ ├── get.md │ │ ├── index.md │ │ ├── is-empty.md │ │ ├── keys.md │ │ ├── put-all.md │ │ ├── put-string.md │ │ ├── put.md │ │ ├── remove.md │ │ ├── size.md │ │ └── values.md │ ├── -scaled-border-and-shadow-serializer │ │ ├── -init-.md │ │ ├── deserialize.md │ │ ├── index.md │ │ └── serialize.md │ ├── -script-info-section │ │ ├── -init-.md │ │ ├── color-matrix.md │ │ ├── editing.md │ │ ├── index.md │ │ ├── original-script.md │ │ ├── play-res-x.md │ │ ├── play-res-y.md │ │ ├── scaled-border-and-shadow.md │ │ ├── script-type.md │ │ ├── synch-point.md │ │ ├── timer.md │ │ ├── timing.md │ │ ├── title.md │ │ ├── translation.md │ │ ├── update-details.md │ │ ├── updated-by.md │ │ └── wrap-style.md │ ├── -section │ │ ├── -init-.md │ │ ├── index.md │ │ ├── name.md │ │ ├── parse.md │ │ ├── serialize-contents.md │ │ └── serialize.md │ ├── -style-line-accessor │ │ ├── -a-l-i-g-n-m-e-n-t.md │ │ ├── -b-o-l-d.md │ │ ├── -b-o-r-d-e-r_-s-t-y-l-e.md │ │ ├── -e-n-c-o-d-i-n-g.md │ │ ├── -f-o-n-t_-n-a-m-e.md │ │ ├── -i-t-a-l-i-c.md │ │ ├── -m-a-r-g-i-n_-l.md │ │ ├── -m-a-r-g-i-n_-r.md │ │ ├── -m-a-r-g-i-n_-v.md │ │ ├── -n-a-m-e.md │ │ ├── -o-u-t-l-i-n-e.md │ │ ├── -o-u-t-l-i-n-e_-c-o-l-o-r.md │ │ ├── -p-r-i-m-a-r-y_-c-o-l-o-r.md │ │ ├── -r-o-t-a-t-i-o-n.md │ │ ├── -s-c-a-l-e_-x.md │ │ ├── -s-c-a-l-e_-y.md │ │ ├── -s-e-c-o-n-d-a-r-y_-c-o-l-o-r.md │ │ ├── -s-h-a-d-o-w.md │ │ ├── -s-h-a-d-o-w_-c-o-l-o-r.md │ │ ├── -s-p-a-c-i-n-g.md │ │ ├── -s-t-r-i-k-e-o-u-t.md │ │ ├── -u-n-d-e-r-l-i-n-e.md │ │ └── index.md │ ├── -style-line │ │ ├── -init-.md │ │ ├── alignment.md │ │ ├── bold.md │ │ ├── border-style.md │ │ ├── encoding.md │ │ ├── font-size.md │ │ ├── font.md │ │ ├── index.md │ │ ├── italic.md │ │ ├── margin-l.md │ │ ├── margin-r.md │ │ ├── margin-v.md │ │ ├── name.md │ │ ├── outline-color.md │ │ ├── outline.md │ │ ├── primary-color.md │ │ ├── rotation.md │ │ ├── scale-x.md │ │ ├── scale-y.md │ │ ├── secondary-color.md │ │ ├── shadow-color.md │ │ ├── shadow.md │ │ ├── spacing.md │ │ ├── strikeout.md │ │ └── underline.md │ ├── -style-section │ │ ├── -init-.md │ │ ├── format.md │ │ ├── index.md │ │ └── line-types.md │ ├── -timer-serializer │ │ ├── -init-.md │ │ ├── deserialize.md │ │ ├── index.md │ │ └── serialize.md │ ├── -wrap-style-serializer │ │ ├── -init-.md │ │ ├── deserialize.md │ │ ├── index.md │ │ └── serialize.md │ ├── -wrap-style │ │ ├── -e-n-d_-o-f_-l-i-n-e.md │ │ ├── -n-o_-w-r-a-p.md │ │ ├── -s-m-a-r-t.md │ │ ├── -s-m-a-r-t_-b-o-t-t-o-m-w-i-d-e.md │ │ └── index.md │ ├── deserialize-ass.md │ ├── index.md │ ├── java.awt.-color │ │ ├── index.md │ │ └── to-ass.md │ ├── java.time.-duration │ │ ├── index.md │ │ └── to-ass.md │ ├── kotlin.-boolean │ │ ├── index.md │ │ └── to-ass.md │ ├── kotlin.-string │ │ ├── ass-boolean.md │ │ ├── ass-color.md │ │ ├── ass-time.md │ │ └── index.md │ └── serialize-ass.md │ ├── myaa.subkt.tasks.utils │ ├── -font-report │ │ ├── -init-.md │ │ ├── faux-bold.md │ │ ├── faux-italic.md │ │ ├── index.md │ │ ├── italic-mismatch.md │ │ ├── limit-lines.md │ │ ├── missing-font.md │ │ ├── missing-glyphs.md │ │ ├── print-report.md │ │ ├── unused-fonts.md │ │ ├── used-font.md │ │ └── weight-mismatch.md │ ├── -mkv-attachment-property │ │ ├── -init-.md │ │ ├── index.md │ │ └── uid.md │ ├── -mkv-attachment │ │ ├── -init-.md │ │ ├── content_type.md │ │ ├── description.md │ │ ├── file_name.md │ │ ├── id.md │ │ ├── index.md │ │ ├── properties.md │ │ ├── size.md │ │ └── type.md │ ├── -mkv-chapter │ │ ├── -init-.md │ │ ├── index.md │ │ └── num_entries.md │ ├── -mkv-container-properties-program │ │ ├── -init-.md │ │ ├── index.md │ │ ├── program_number.md │ │ ├── service_name.md │ │ └── service_provider.md │ ├── -mkv-container-properties │ │ ├── -init-.md │ │ ├── container_type.md │ │ ├── date_local.md │ │ ├── date_utc.md │ │ ├── duration.md │ │ ├── index.md │ │ ├── is_providing_timestamps.md │ │ ├── muxing_application.md │ │ ├── next_segment_uid.md │ │ ├── other_file.md │ │ ├── playlist.md │ │ ├── playlist_chapters.md │ │ ├── playlist_duration.md │ │ ├── playlist_file.md │ │ ├── playlist_size.md │ │ ├── previous_segment_uid.md │ │ ├── programs.md │ │ ├── segment_uid.md │ │ ├── title.md │ │ └── writing_application.md │ ├── -mkv-container │ │ ├── -init-.md │ │ ├── index.md │ │ ├── properties.md │ │ ├── recognized.md │ │ ├── supported.md │ │ └── type.md │ ├── -mkv-global-tag │ │ ├── -init-.md │ │ ├── index.md │ │ └── num_entries.md │ ├── -mkv-info-serializer │ │ ├── index.md │ │ └── serialize.md │ ├── -mkv-info │ │ ├── -init-.md │ │ ├── attachments.md │ │ ├── audio_tracks.md │ │ ├── chapters.md │ │ ├── container.md │ │ ├── errors.md │ │ ├── file_name.md │ │ ├── global_tags.md │ │ ├── identification_format_version.md │ │ ├── index.md │ │ ├── subtitles_tracks.md │ │ ├── track_tags.md │ │ ├── tracks.md │ │ ├── video_tracks.md │ │ └── warnings.md │ ├── -mkv-track-properties │ │ ├── -init-.md │ │ ├── aac_is_sbr.md │ │ ├── audio_bits_per_sample.md │ │ ├── audio_channels.md │ │ ├── audio_sampling_frequency.md │ │ ├── codec_delay.md │ │ ├── codec_id.md │ │ ├── codec_name.md │ │ ├── codec_private_data.md │ │ ├── codec_private_length.md │ │ ├── content_encoding_algorithms.md │ │ ├── default_duration.md │ │ ├── default_track.md │ │ ├── display_dimensions.md │ │ ├── display_unit.md │ │ ├── enabled_track.md │ │ ├── encoding.md │ │ ├── forced_track.md │ │ ├── index.md │ │ ├── language.md │ │ ├── minimum_timestamp.md │ │ ├── multiplexed_tracks.md │ │ ├── number.md │ │ ├── packetizer.md │ │ ├── pixel_dimensions.md │ │ ├── program_number.md │ │ ├── stereo_mode.md │ │ ├── stream_id.md │ │ ├── sub_stream_id.md │ │ ├── tag_artist.md │ │ ├── tag_bitsps.md │ │ ├── tag_bps.md │ │ ├── tag_fps.md │ │ ├── tag_title.md │ │ ├── teletext_page.md │ │ ├── text_subtitles.md │ │ ├── track_name.md │ │ └── uid.md │ ├── -mkv-track-tag │ │ ├── -init-.md │ │ ├── index.md │ │ ├── num_entries.md │ │ └── track_id.md │ ├── -mkv-track │ │ ├── -init-.md │ │ ├── codec.md │ │ ├── id.md │ │ ├── index.md │ │ ├── properties.md │ │ └── type.md │ ├── -state │ │ ├── -init-.md │ │ ├── drawing.md │ │ ├── font.md │ │ ├── index.md │ │ ├── italic.md │ │ ├── weight.md │ │ └── wrap-style.md │ ├── get-mkv-info.md │ ├── index.md │ ├── parse-lines.md │ └── verify-fonts.md │ ├── myaa.subkt.tasks │ ├── -a-s-s-color-serializer │ │ ├── index.md │ │ └── serialize.md │ ├── -a-s-s-task │ │ ├── -init-.md │ │ ├── build-ass.md │ │ ├── include-extra-data.md │ │ ├── include-project-garbage.md │ │ ├── index.md │ │ ├── out.md │ │ ├── remove-comments.md │ │ └── run.md │ ├── -a-s-s │ │ ├── -init-.md │ │ ├── ass.md │ │ ├── build-ass.md │ │ ├── from.md │ │ └── index.md │ ├── -abstract-transfer-task │ │ ├── -dest-dir-root-spec │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ ├── into.md │ │ │ └── resolve-dest-dir.md │ │ ├── -file-details │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ ├── modified.md │ │ │ └── size.md │ │ ├── -init-.md │ │ ├── create-client.md │ │ ├── create-copy-action.md │ │ ├── create-root-spec.md │ │ ├── get-root-spec.md │ │ ├── index.md │ │ ├── makedir.md │ │ ├── makedirs.md │ │ ├── overwrite-if.md │ │ ├── progress-logger-factory.md │ │ ├── stat.md │ │ └── upload.md │ ├── -anidex │ │ ├── -anidex-categories │ │ │ ├── -a-n-i-m-e_-d-u-b.md │ │ │ ├── -a-n-i-m-e_-r-a-w.md │ │ │ ├── -a-n-i-m-e_-s-u-b.md │ │ │ ├── -a-p-p-l-i-c-a-t-i-o-n-s.md │ │ │ ├── -a-v.md │ │ │ ├── -g-a-m-e-s.md │ │ │ ├── -l-a_-r-a-w.md │ │ │ ├── -l-a_-s-u-b.md │ │ │ ├── -l-i-g-h-t_-n-o-v-e-l.md │ │ │ ├── -m-a-n-g-a_-r-a-w.md │ │ │ ├── -m-a-n-g-a_-t-l.md │ │ │ ├── -m-u-s-i-c_-l-o-s-s-l-e-s-s.md │ │ │ ├── -m-u-s-i-c_-l-o-s-s-y.md │ │ │ ├── -m-u-s-i-c_-v-i-d-e-o.md │ │ │ ├── -o-t-h-e-r.md │ │ │ ├── -p-i-c-t-u-r-e-s.md │ │ │ ├── category-id.md │ │ │ └── index.md │ │ ├── -anidex-language │ │ │ ├── -a-r-a-b-i-c.md │ │ │ ├── -b-e-n-g-a-l-i.md │ │ │ ├── -b-u-l-g-a-r-i-a-n.md │ │ │ ├── -c-h-i-n-e-s-e_-s-i-m-p-l-i-f-i-e-d.md │ │ │ ├── -c-z-e-c-h.md │ │ │ ├── -d-a-n-i-s-h.md │ │ │ ├── -d-u-t-c-h.md │ │ │ ├── -e-n-g-l-i-s-h.md │ │ │ ├── -f-i-n-n-i-s-h.md │ │ │ ├── -f-r-e-n-c-h.md │ │ │ ├── -g-e-r-m-a-n.md │ │ │ ├── -g-r-e-e-k.md │ │ │ ├── -h-u-n-g-a-r-i-a-n.md │ │ │ ├── -i-n-d-o-n-e-s-i-a-n.md │ │ │ ├── -i-t-a-l-i-a-n.md │ │ │ ├── -j-a-p-a-n-e-s-e.md │ │ │ ├── -k-o-r-e-a-n.md │ │ │ ├── -m-a-l-a-y-s-i-a-n.md │ │ │ ├── -m-o-n-g-o-l-i-a-n.md │ │ │ ├── -p-e-r-s-i-a-n.md │ │ │ ├── -p-o-l-i-s-h.md │ │ │ ├── -p-o-r-t-u-g-u-e-s-e_-b-r-a-z-i-l.md │ │ │ ├── -p-o-r-t-u-g-u-e-s-e_-p-o-r-t-u-g-a-l.md │ │ │ ├── -r-o-m-a-n-i-a-n.md │ │ │ ├── -r-u-s-s-i-a-n.md │ │ │ ├── -s-e-r-b-o-c-r-o-a-t-i-a-n.md │ │ │ ├── -s-p-a-n-i-s-h_-l-a-t-a-m.md │ │ │ ├── -s-p-a-n-i-s-h_-s-p-a-i-n.md │ │ │ ├── -s-w-e-d-i-s-h.md │ │ │ ├── -t-u-r-k-i-s-h.md │ │ │ ├── -v-i-e-t-n-a-m-e-s-e.md │ │ │ ├── index.md │ │ │ └── lang-id.md │ │ ├── -init-.md │ │ ├── anidex-url.md │ │ ├── api-key.md │ │ ├── batch.md │ │ ├── category.md │ │ ├── endpoint.md │ │ ├── from.md │ │ ├── group.md │ │ ├── hidden.md │ │ ├── host.md │ │ ├── https.md │ │ ├── index.md │ │ ├── lang.md │ │ ├── out.md │ │ ├── port.md │ │ ├── r18.md │ │ ├── remake.md │ │ ├── run.md │ │ ├── torrent-description.md │ │ ├── torrent-name.md │ │ └── tt-api.md │ ├── -automation │ │ ├── -dialog │ │ │ ├── -init-.md │ │ │ ├── button.md │ │ │ ├── index.md │ │ │ └── values.md │ │ ├── -init-.md │ │ ├── -log-level │ │ │ ├── -a-s-s-e-r-t.md │ │ │ ├── -d-e-b-u-g.md │ │ │ ├── -e-x-c-e-p-t-i-o-n.md │ │ │ ├── -i-n-f-o.md │ │ │ ├── -w-a-r-n-i-n-g.md │ │ │ └── index.md │ │ ├── -selection │ │ │ ├── -init-.md │ │ │ ├── active.md │ │ │ ├── index.md │ │ │ └── selected.md │ │ ├── -selector │ │ │ ├── -init-.md │ │ │ ├── active.md │ │ │ ├── index.md │ │ │ └── select.md │ │ ├── aegisub-cli.md │ │ ├── dialog.md │ │ ├── file-dialog.md │ │ ├── from.md │ │ ├── index.md │ │ ├── keyframes.md │ │ ├── loglevel.md │ │ ├── macro.md │ │ ├── out.md │ │ ├── run.md │ │ ├── script.md │ │ ├── select-lines.md │ │ ├── selection.md │ │ ├── timecodes.md │ │ └── video.md │ ├── -base-context │ │ ├── -init-.md │ │ ├── do-get.md │ │ ├── index.md │ │ ├── internal-contains-key.md │ │ ├── internal-get-keys.md │ │ ├── internal-get.md │ │ ├── internal-put.md │ │ └── internal-remove.md │ ├── -chapters │ │ ├── -init-.md │ │ ├── chapter-marker.md │ │ ├── chapter-name.md │ │ ├── field.md │ │ ├── from.md │ │ ├── generate-intro.md │ │ ├── index.md │ │ ├── intro-chapter.md │ │ ├── out.md │ │ └── run.md │ ├── -color-serializer │ │ ├── index.md │ │ └── serialize.md │ ├── -default-sub-task │ │ ├── -init-.md │ │ └── index.md │ ├── -discord │ │ ├── -author │ │ │ ├── -init-.md │ │ │ ├── icon-url.md │ │ │ ├── index.md │ │ │ ├── name.md │ │ │ ├── proxy-icon-url.md │ │ │ └── url.md │ │ ├── -embed │ │ │ ├── -init-.md │ │ │ ├── author.md │ │ │ ├── color.md │ │ │ ├── description.md │ │ │ ├── field.md │ │ │ ├── fields.md │ │ │ ├── footer.md │ │ │ ├── image.md │ │ │ ├── index.md │ │ │ ├── provider.md │ │ │ ├── thumbnail.md │ │ │ ├── timestamp.md │ │ │ ├── title.md │ │ │ ├── url.md │ │ │ └── video.md │ │ ├── -field │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ ├── inline.md │ │ │ ├── name.md │ │ │ └── value.md │ │ ├── -footer │ │ │ ├── -init-.md │ │ │ ├── icon-url.md │ │ │ ├── index.md │ │ │ ├── proxy-icon-url.md │ │ │ └── text.md │ │ ├── -image │ │ │ ├── -init-.md │ │ │ ├── height.md │ │ │ ├── index.md │ │ │ ├── proxy-url.md │ │ │ ├── url.md │ │ │ └── width.md │ │ ├── -init-.md │ │ ├── -provider │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ ├── name.md │ │ │ └── url.md │ │ ├── -thumbnail │ │ │ ├── -init-.md │ │ │ ├── height.md │ │ │ ├── index.md │ │ │ ├── proxy-url.md │ │ │ ├── url.md │ │ │ └── width.md │ │ ├── -video │ │ │ ├── -init-.md │ │ │ ├── height.md │ │ │ ├── index.md │ │ │ ├── url.md │ │ │ └── width.md │ │ ├── attachment.md │ │ ├── avatar-url.md │ │ ├── content.md │ │ ├── embed.md │ │ ├── embeds.md │ │ ├── index.md │ │ ├── run.md │ │ ├── tts.md │ │ ├── username.md │ │ └── webhook.md │ ├── -error-mode │ │ ├── -f-a-i-l.md │ │ ├── -i-g-n-o-r-e.md │ │ ├── -w-a-r-n.md │ │ └── index.md │ ├── -f-t-p │ │ ├── -certificate-mode │ │ │ ├── -a-c-c-e-p-t_-a-l-l.md │ │ │ ├── -d-e-f-a-u-l-t.md │ │ │ ├── -v-e-r-i-f-y_-n-o-t_-e-x-p-i-r-e-d.md │ │ │ └── index.md │ │ ├── -init-.md │ │ ├── certificate-verification-mode.md │ │ ├── create-client.md │ │ ├── host.md │ │ ├── implicit-ssl.md │ │ ├── index.md │ │ ├── makedir.md │ │ ├── password.md │ │ ├── port.md │ │ ├── ssl-session-reuse.md │ │ ├── stat.md │ │ ├── upload.md │ │ ├── use-ssl.md │ │ └── username.md │ ├── -filterable │ │ ├── id.md │ │ ├── include.md │ │ └── index.md │ ├── -h-t-t-p │ │ ├── -init-.md │ │ ├── attachment.md │ │ ├── basic-auth-pass.md │ │ ├── basic-auth-user.md │ │ ├── body.md │ │ ├── content-type.md │ │ ├── endpoint.md │ │ ├── form.md │ │ ├── header.md │ │ ├── headers.md │ │ ├── host.md │ │ ├── https.md │ │ ├── index.md │ │ ├── json.md │ │ ├── method.md │ │ ├── out.md │ │ ├── parameter.md │ │ ├── parameters.md │ │ ├── port.md │ │ ├── response-data.md │ │ ├── response-json.md │ │ ├── run.md │ │ ├── url-pass.md │ │ ├── url-user.md │ │ └── user-agent.md │ ├── -item-group-context │ │ ├── -init-.md │ │ ├── entries.md │ │ ├── episodes.md │ │ ├── index.md │ │ ├── invoke.md │ │ ├── is-batch.md │ │ ├── provider.md │ │ ├── subs.md │ │ ├── task-groups.md │ │ ├── task.md │ │ └── value.md │ ├── -item-group │ │ ├── -init-.md │ │ ├── batch-items.md │ │ ├── create-item.md │ │ ├── index.md │ │ ├── item.md │ │ ├── register-item-maybe.md │ │ └── subs.md │ ├── -merge │ │ ├── -file-spec-pair │ │ │ ├── -init-.md │ │ │ ├── files.md │ │ │ ├── index.md │ │ │ └── spec.md │ │ ├── -init-.md │ │ ├── -line-specification │ │ │ ├── -init-.md │ │ │ ├── field.md │ │ │ ├── index.md │ │ │ └── value.md │ │ ├── -merge-specification │ │ │ ├── -init-.md │ │ │ ├── increment-layer.md │ │ │ ├── index.md │ │ │ ├── shift-by.md │ │ │ ├── sync-source-line.md │ │ │ ├── sync-target-line.md │ │ │ └── sync-target-time.md │ │ ├── -on-negative-timestamp │ │ │ ├── -d-e-l-e-t-e.md │ │ │ ├── -e-r-r-o-r.md │ │ │ ├── -f-o-r-c-e_-z-e-r-o.md │ │ │ ├── -i-g-n-o-r-e.md │ │ │ └── index.md │ │ ├── build-ass.md │ │ ├── conflicting-script-info.md │ │ ├── from-if-present.md │ │ ├── from-merge-template.md │ │ ├── from.md │ │ ├── index.md │ │ ├── namespace-styles.md │ │ ├── on-negative-timestamp.md │ │ ├── on-script-info-conflict.md │ │ ├── on-style-conflict.md │ │ ├── script-info.md │ │ └── sources.md │ ├── -mux-flag │ │ ├── -init-.md │ │ ├── flag.md │ │ └── index.md │ ├── -mux │ │ ├── -attachment │ │ │ ├── -attachment-info │ │ │ │ ├── -init-.md │ │ │ │ ├── content-type.md │ │ │ │ ├── file-name.md │ │ │ │ ├── index.md │ │ │ │ ├── size.md │ │ │ │ └── type.md │ │ │ ├── -init-.md │ │ │ ├── attachment.md │ │ │ ├── id.md │ │ │ ├── include.md │ │ │ ├── index.md │ │ │ ├── source-attachment.md │ │ │ └── to-string.md │ │ ├── -chapter │ │ │ ├── -init-.md │ │ │ ├── charset.md │ │ │ ├── delay.md │ │ │ ├── file.md │ │ │ ├── index.md │ │ │ ├── lang.md │ │ │ ├── stretch.md │ │ │ └── sync.md │ │ ├── -compression-type │ │ │ ├── -m-p-e-g4-p2.md │ │ │ ├── -n-o-n-e.md │ │ │ ├── -z-l-i-b.md │ │ │ ├── comp.md │ │ │ ├── index.md │ │ │ └── to-string.md │ │ ├── -dimensions │ │ │ ├── -init-.md │ │ │ ├── from-string.md │ │ │ ├── height.md │ │ │ ├── index.md │ │ │ ├── to-string.md │ │ │ └── width.md │ │ ├── -init-.md │ │ ├── -mux-file │ │ │ ├── -init-.md │ │ │ ├── attachments.md │ │ │ ├── audio.md │ │ │ ├── chapters.md │ │ │ ├── file-options.md │ │ │ ├── file.md │ │ │ ├── include-chapters.md │ │ │ ├── index.md │ │ │ ├── info.md │ │ │ ├── subtitles.md │ │ │ ├── to-string.md │ │ │ ├── tracks.md │ │ │ └── video.md │ │ ├── -track-duration │ │ │ ├── -duration-unit │ │ │ │ ├── -f-p-s.md │ │ │ │ ├── -i-n-t-e-r-l-a-c-e-d.md │ │ │ │ ├── -m-i-c-r-o-s-e-c-o-n-d-s.md │ │ │ │ ├── -m-i-l-l-i-s-e-c-o-n-d-s.md │ │ │ │ ├── -n-a-n-o-s-e-c-o-n-d-s.md │ │ │ │ ├── -p-r-o-g-r-e-s-s-i-v-e.md │ │ │ │ ├── -s-e-c-o-n-d-s.md │ │ │ │ ├── index.md │ │ │ │ └── unit.md │ │ │ ├── -init-.md │ │ │ ├── duration-unit.md │ │ │ ├── duration.md │ │ │ ├── index.md │ │ │ └── to-string.md │ │ ├── -track-type │ │ │ ├── -a-u-d-i-o.md │ │ │ ├── -b-u-t-t-o-n-s.md │ │ │ ├── -o-t-h-e-r.md │ │ │ ├── -s-u-b-t-i-t-l-e-s.md │ │ │ ├── -v-i-d-e-o.md │ │ │ ├── find.md │ │ │ ├── flag.md │ │ │ ├── index.md │ │ │ └── type.md │ │ ├── -track │ │ │ ├── -init-.md │ │ │ ├── -track-info │ │ │ │ ├── -init-.md │ │ │ │ ├── audio-channels.md │ │ │ │ ├── codec-id.md │ │ │ │ ├── codec.md │ │ │ │ ├── default.md │ │ │ │ ├── display-dimensios.md │ │ │ │ ├── encoding.md │ │ │ │ ├── forced.md │ │ │ │ ├── index.md │ │ │ │ ├── lang.md │ │ │ │ ├── name.md │ │ │ │ ├── pixel-dimensions.md │ │ │ │ ├── type-string.md │ │ │ │ └── type.md │ │ │ ├── aspect-ratio.md │ │ │ ├── compression.md │ │ │ ├── default-duration.md │ │ │ ├── default.md │ │ │ ├── delay.md │ │ │ ├── display-dimensions.md │ │ │ ├── forced.md │ │ │ ├── id.md │ │ │ ├── include.md │ │ │ ├── index.md │ │ │ ├── lang.md │ │ │ ├── name.md │ │ │ ├── source-track.md │ │ │ ├── stretch.md │ │ │ ├── sync.md │ │ │ ├── to-string.md │ │ │ ├── track-order.md │ │ │ └── track.md │ │ ├── attach.md │ │ ├── attachments-property.md │ │ ├── chapters-property.md │ │ ├── chapters.md │ │ ├── crc.md │ │ ├── default-language.md │ │ ├── deterministic-seed.md │ │ ├── deterministic.md │ │ ├── files-property.md │ │ ├── force-c-r-c.md │ │ ├── from.md │ │ ├── global-options.md │ │ ├── index.md │ │ ├── info.md │ │ ├── input-files.md │ │ ├── mime-types.md │ │ ├── mkvmerge.md │ │ ├── on-faux.md │ │ ├── on-missing-fonts.md │ │ ├── on-missing-glyphs.md │ │ ├── on-style-mismatch.md │ │ ├── out-file.md │ │ ├── out.md │ │ ├── run.md │ │ ├── skip-unused-fonts.md │ │ ├── title.md │ │ ├── verify-c-r-c.md │ │ ├── verify-fonts.md │ │ └── webm.md │ ├── -nyaa │ │ ├── -init-.md │ │ ├── -nyaa-categories │ │ │ ├── -a-n-i-m-e_-a-m-v.md │ │ │ ├── -a-n-i-m-e_-e-n-g-l-i-s-h.md │ │ │ ├── -a-n-i-m-e_-n-o-n-e-n-g-l-i-s-h.md │ │ │ ├── -a-n-i-m-e_-r-a-w.md │ │ │ ├── -a-u-d-i-o_-l-o-s-s-l-e-s-s.md │ │ │ ├── -a-u-d-i-o_-l-o-s-s-y.md │ │ │ ├── -l-i-t-e-r-a-t-u-r-e_-e-n-g-l-i-s-h.md │ │ │ ├── -l-i-t-e-r-a-t-u-r-e_-n-o-n-e-n-g-l-i-s-h.md │ │ │ ├── -l-i-t-e-r-a-t-u-r-e_-r-a-w.md │ │ │ ├── -l-i-v-e-a-c-t-i-o-n_-e-n-g-l-i-s-h.md │ │ │ ├── -l-i-v-e-a-c-t-i-o-n_-i-d-o-l.md │ │ │ ├── -l-i-v-e-a-c-t-i-o-n_-n-o-n-e-n-g-l-i-s-h.md │ │ │ ├── -l-i-v-e-a-c-t-i-o-n_-r-a-w.md │ │ │ ├── -p-i-c-t-u-r-e-s_-g-r-a-p-h-i-c-s.md │ │ │ ├── -p-i-c-t-u-r-e-s_-p-h-o-t-o-s.md │ │ │ ├── -s-o-f-t-w-a-r-e_-a-p-p-l-i-c-a-t-i-o-n-s.md │ │ │ ├── -s-o-f-t-w-a-r-e_-g-a-m-e-s.md │ │ │ ├── -s_-a-r-t_-a-n-i-m-e.md │ │ │ ├── -s_-a-r-t_-d-o-u-j-i-n-s-h-i.md │ │ │ ├── -s_-a-r-t_-g-a-m-e-s.md │ │ │ ├── -s_-a-r-t_-m-a-n-g-a.md │ │ │ ├── -s_-a-r-t_-p-i-c-t-u-r-e-s.md │ │ │ ├── -s_-r-e-a-l-l-i-f-e_-p-h-o-t-o-b-o-o-k-s.md │ │ │ ├── -s_-r-e-a-l-l-i-f-e_-v-i-d-e-o-s.md │ │ │ ├── category.md │ │ │ └── index.md │ │ ├── anonymous.md │ │ ├── category.md │ │ ├── complete.md │ │ ├── endpoint.md │ │ ├── from.md │ │ ├── hidden.md │ │ ├── host.md │ │ ├── https.md │ │ ├── index.md │ │ ├── information.md │ │ ├── nyaa-hash.md │ │ ├── nyaa-id.md │ │ ├── nyaa-magnet.md │ │ ├── nyaa-name.md │ │ ├── nyaa-url.md │ │ ├── out.md │ │ ├── password.md │ │ ├── port.md │ │ ├── remake.md │ │ ├── run.md │ │ ├── torrent-description.md │ │ ├── torrent-name.md │ │ ├── trusted.md │ │ └── username.md │ ├── -overwrite-strategy │ │ ├── -a-l-w-a-y-s.md │ │ ├── -d-i-f-f-e-r-e-n-t_-s-i-z-e.md │ │ ├── -d-i-f-f-e-r-e-n-t_-s-i-z-e_-o-r_-s-o-u-r-c-e_-n-e-w-e-r.md │ │ ├── -n-e-v-e-r.md │ │ ├── -s-o-u-r-c-e_-n-e-w-e-r.md │ │ └── index.md │ ├── -property-task │ │ ├── -init-.md │ │ ├── -task-property │ │ │ ├── -init-.md │ │ │ ├── default.md │ │ │ ├── get-value.md │ │ │ ├── index.md │ │ │ └── set-value.md │ │ ├── do-task.md │ │ ├── index.md │ │ ├── property-file.md │ │ └── run.md │ ├── -provider-group │ │ ├── -init-.md │ │ ├── action.md │ │ ├── create-item.md │ │ └── index.md │ ├── -provider-serializer │ │ ├── index.md │ │ └── serialize.md │ ├── -s-f-t-p │ │ ├── -init-.md │ │ ├── create-client.md │ │ ├── index.md │ │ ├── makedir.md │ │ ├── stat.md │ │ └── upload.md │ ├── -s-s-h-exec │ │ ├── -init-.md │ │ ├── command.md │ │ ├── environment.md │ │ ├── error-output.md │ │ ├── index.md │ │ ├── run.md │ │ ├── standard-input.md │ │ └── standard-output.md │ ├── -s-s-h-task │ │ ├── config.md │ │ ├── connection-timeout.md │ │ ├── create-session.md │ │ ├── host.md │ │ ├── identity.md │ │ ├── index.md │ │ ├── known-hosts.md │ │ ├── password.md │ │ ├── port.md │ │ └── username.md │ ├── -sub-copy │ │ ├── -init-.md │ │ └── index.md │ ├── -sub-exec │ │ ├── -init-.md │ │ └── index.md │ ├── -sub-plugin │ │ ├── -init-.md │ │ ├── apply.md │ │ └── index.md │ ├── -sub-properties │ │ ├── -init-.md │ │ ├── add.md │ │ ├── index.md │ │ ├── match.md │ │ └── parse.md │ ├── -sub-sync │ │ ├── -init-.md │ │ └── index.md │ ├── -sub-task │ │ ├── batch-items.md │ │ ├── index.md │ │ └── item.md │ ├── -sub-zip │ │ ├── -init-.md │ │ └── index.md │ ├── -subs │ │ ├── -init-.md │ │ ├── -sub-context │ │ │ ├── -init-.md │ │ │ ├── do-get.md │ │ │ ├── entry.md │ │ │ └── index.md │ │ ├── alltasks.md │ │ ├── arg.md │ │ ├── batches.md │ │ ├── batchtasks.md │ │ ├── entries.md │ │ ├── episodes.md │ │ ├── evaluate-template.md │ │ ├── evaluate.md │ │ ├── get-as.md │ │ ├── get-file.md │ │ ├── get-list-as.md │ │ ├── get-list.md │ │ ├── get-map.md │ │ ├── get-raw-maybe.md │ │ ├── get-raw.md │ │ ├── get.md │ │ ├── index.md │ │ ├── is-batch.md │ │ ├── project.md │ │ ├── properties.md │ │ ├── property-exists.md │ │ ├── read-properties.md │ │ ├── release.md │ │ ├── subs.md │ │ ├── task-groups.md │ │ └── tasks.md │ ├── -swap │ │ ├── -init-.md │ │ ├── build-ass.md │ │ ├── delimiter.md │ │ ├── from.md │ │ ├── index.md │ │ ├── line-marker.md │ │ └── styles.md │ ├── -task-context │ │ ├── -init-.md │ │ ├── do-get.md │ │ ├── index.md │ │ └── task.md │ ├── -task-creator │ │ ├── -init-.md │ │ ├── -wrapper-delegate │ │ │ ├── -init-.md │ │ │ ├── get-value.md │ │ │ ├── index.md │ │ │ └── item.md │ │ ├── context.md │ │ ├── index.md │ │ ├── init-action.md │ │ ├── klass.md │ │ └── provide-delegate.md │ ├── -task-group │ │ ├── -init-.md │ │ ├── create-item.md │ │ ├── index.md │ │ ├── klass.md │ │ ├── name.md │ │ └── to-string.md │ ├── -torrent │ │ ├── -init-.md │ │ ├── comment.md │ │ ├── create-copy-action.md │ │ ├── created-by.md │ │ ├── index.md │ │ ├── out.md │ │ ├── piece-length.md │ │ ├── private.md │ │ └── trackers.md │ ├── -value-closure │ │ ├── -closure-context │ │ │ ├── -init-.md │ │ │ ├── do-get.md │ │ │ └── index.md │ │ ├── -init-.md │ │ ├── batch-items.md │ │ ├── batch.md │ │ ├── entry.md │ │ ├── episode.md │ │ ├── episodes.md │ │ ├── evaluate-template.md │ │ ├── evaluate.md │ │ ├── get-as.md │ │ ├── get-file.md │ │ ├── get-list-as.md │ │ ├── get-list.md │ │ ├── get-raw-maybe.md │ │ ├── get-raw.md │ │ ├── get.md │ │ ├── index.md │ │ ├── is-batch.md │ │ ├── item.md │ │ ├── property-exists.md │ │ ├── release.md │ │ └── task-group.md │ ├── -value-group │ │ ├── -init-.md │ │ ├── action.md │ │ ├── create-item.md │ │ └── index.md │ ├── -zoned-date-time-serializer │ │ ├── index.md │ │ └── serialize.md │ ├── anidex.md │ ├── chapters.md │ ├── discord.md │ ├── ftp.md │ ├── index.md │ ├── kotlin.-string │ │ ├── as-type.md │ │ └── index.md │ ├── merge.md │ ├── mux.md │ ├── nyaa.md │ ├── org.gradle.api.-project │ │ ├── glob-path.md │ │ ├── glob.md │ │ └── index.md │ ├── org.gradle.api.-task │ │ ├── batch.md │ │ ├── current-task.md │ │ ├── default-property.md │ │ ├── entry.md │ │ ├── episode.md │ │ ├── episodes.md │ │ ├── evaluate-template.md │ │ ├── evaluate.md │ │ ├── get-as.md │ │ ├── get-file.md │ │ ├── get-list-as.md │ │ ├── get-list.md │ │ ├── get-raw-maybe.md │ │ ├── get-raw.md │ │ ├── get.md │ │ ├── index.md │ │ ├── is-batch.md │ │ ├── output-file.md │ │ ├── property-exists.md │ │ └── release.md │ ├── org.gradle.api.file.-configurable-file-collection │ │ ├── index.md │ │ └── invoke.md │ ├── org.gradle.api.file.-file-system-location-property │ │ ├── index.md │ │ └── invoke.md │ ├── org.gradle.api.provider.-has-multiple-values │ │ ├── index.md │ │ └── invoke.md │ ├── org.gradle.api.provider.-map-property │ │ ├── index.md │ │ └── invoke.md │ ├── org.gradle.api.provider.-property │ │ ├── index.md │ │ └── invoke.md │ ├── org.gradle.api.tasks.util.-pattern-filterable │ │ ├── include-extensions.md │ │ └── index.md │ ├── sftp.md │ ├── swap.md │ ├── task-group.md │ └── torrent.md │ └── package-list ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts ├── src ├── docs │ └── markdown │ │ └── packages.md ├── main │ └── kotlin │ │ └── myaa │ │ └── subkt │ │ ├── ass │ │ └── parser.kt │ │ └── tasks │ │ ├── asstasks.kt │ │ ├── discordtask.kt │ │ ├── muxtask.kt │ │ ├── plugin.kt │ │ ├── tasks.kt │ │ └── utils │ │ ├── fontvalidator.kt │ │ └── mkvmerge.kt └── samples │ └── kotlin │ └── tasks.kt └── template ├── build.gradle.kts ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── sub.properties /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | mkdocs.yml 3 | site 4 | *.zip 5 | 6 | mocha/ 7 | misc/ 8 | 9 | # Ignore Gradle project-specific cache directory 10 | .gradle 11 | 12 | # Ignore Gradle build output directory 13 | build 14 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "ttorrent"] 2 | path = ttorrent 3 | url = https://github.com/mpetazzoni/ttorrent.git 4 | branch = ttorrent-2.0 5 | -------------------------------------------------------------------------------- /docs/img/intellij_gradle_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myaamori/SubKt/9115c61af3290c86bb70ed3a07420fed935edb82/docs/img/intellij_gradle_refresh.png -------------------------------------------------------------------------------- /docs/img/intellij_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myaamori/SubKt/9115c61af3290c86bb70ed3a07420fed935edb82/docs/img/intellij_import.png -------------------------------------------------------------------------------- /docs/img/intellij_open_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myaamori/SubKt/9115c61af3290c86bb70ed3a07420fed935edb82/docs/img/intellij_open_project.png -------------------------------------------------------------------------------- /docs/img/intellij_pick_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myaamori/SubKt/9115c61af3290c86bb70ed3a07420fed935edb82/docs/img/intellij_pick_build.png -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/events-header.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [eventsHeader](./events-header.md) 2 | 3 | # eventsHeader 4 | 5 | `const val eventsHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L92) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/events.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [events](./events.md) 2 | 3 | # events 4 | 5 | `val events: `[`EventSection`](../-event-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L128) 6 | 7 | The [EventSection](../-event-section/index.md) of the file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/extra-data-header.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [extraDataHeader](./extra-data-header.md) 2 | 3 | # extraDataHeader 4 | 5 | `const val extraDataHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L93) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [file](./file.md) 2 | 3 | # file 4 | 5 | `val file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L84) 6 | 7 | The file to parse. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/line-pattern.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [linePattern](./line-pattern.md) 2 | 3 | # linePattern 4 | 5 | `val linePattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L87) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/project-garbage-header.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [projectGarbageHeader](./project-garbage-header.md) 2 | 3 | # projectGarbageHeader 4 | 5 | `const val projectGarbageHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L90) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/script-info-header.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [scriptInfoHeader](./script-info-header.md) 2 | 3 | # scriptInfoHeader 4 | 5 | `const val scriptInfoHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L89) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/script-info.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [scriptInfo](./script-info.md) 2 | 3 | # scriptInfo 4 | 5 | `val scriptInfo: `[`ScriptInfoSection`](../-script-info-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L110) 6 | 7 | The [ScriptInfoSection](../-script-info-section/index.md) of the file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/section-pattern.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [sectionPattern](./section-pattern.md) 2 | 3 | # sectionPattern 4 | 5 | `val sectionPattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L86) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/styles-header.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [stylesHeader](./styles-header.md) 2 | 3 | # stylesHeader 4 | 5 | `const val stylesHeader: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L91) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-file/styles.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSFile](index.md) / [styles](./styles.md) 2 | 3 | # styles 4 | 5 | `val styles: `[`StyleSection`](../-style-section/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L122) 6 | 7 | The [StyleSection](../-style-section/index.md) of the file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-serializer/deserialize.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSSerializer](index.md) / [deserialize](./deserialize.md) 2 | 3 | # deserialize 4 | 5 | `abstract fun deserialize(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L705) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-a-s-s-serializer/serialize.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ASSSerializer](index.md) / [serialize](./serialize.md) 2 | 3 | # serialize 4 | 5 | `abstract fun serialize(a: `[`T`](index.md#T)`): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L707) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/active-line.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [activeLine](./active-line.md) 2 | 3 | # activeLine 4 | 5 | `val activeLine: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L864) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/audio-file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [audioFile](./audio-file.md) 2 | 3 | # audioFile 4 | 5 | `var audioFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L848) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/automation-scripts.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [automationScripts](./automation-scripts.md) 2 | 3 | # automationScripts 4 | 5 | `var automationScripts: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L840) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/export-encoding.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [exportEncoding](./export-encoding.md) 2 | 3 | # exportEncoding 4 | 5 | `var exportEncoding: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L844) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/export-filters.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [exportFilters](./export-filters.md) 2 | 3 | # exportFilters 4 | 5 | `var exportFilters: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L842) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/keyframes-file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [keyframesFile](./keyframes-file.md) 2 | 3 | # keyframesFile 4 | 5 | `var keyframesFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L854) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/last-style-storage.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [lastStyleStorage](./last-style-storage.md) 2 | 3 | # lastStyleStorage 4 | 5 | `var lastStyleStorage: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L846) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/scroll-position.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [scrollPosition](./scroll-position.md) 2 | 3 | # scrollPosition 4 | 5 | `var scrollPosition: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L862) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/timecodes-file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [timecodesFile](./timecodes-file.md) 2 | 3 | # timecodesFile 4 | 5 | `var timecodesFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L852) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/video-a-r-mode.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [videoARMode](./video-a-r-mode.md) 2 | 3 | # videoARMode 4 | 5 | `var videoARMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L856) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/video-a-r-value.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [videoARValue](./video-a-r-value.md) 2 | 3 | # videoARValue 4 | 5 | `var videoARValue: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L858) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/video-file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [videoFile](./video-file.md) 2 | 3 | # videoFile 4 | 5 | `var videoFile: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L850) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/video-position.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [videoPosition](./video-position.md) 2 | 3 | # videoPosition 4 | 5 | `var videoPosition: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L866) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-aegisub-project-garbage-section/video-zoom-percent.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [AegisubProjectGarbageSection](index.md) / [videoZoomPercent](./video-zoom-percent.md) 2 | 3 | # videoZoomPercent 4 | 5 | `var videoZoomPercent: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L860) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-collisions-serializer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [CollisionsSerializer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `CollisionsSerializer()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-collisions/-n-o-r-m-a-l.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [Collisions](index.md) / [NORMAL](./-n-o-r-m-a-l.md) 2 | 3 | # NORMAL 4 | 5 | `NORMAL` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L754) 6 | 7 | ### Inherited Properties 8 | 9 | | Name | Summary | 10 | |---|---| 11 | | [value](value.md) | `val value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | 12 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-collisions/value.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [Collisions](index.md) / [value](./value.md) 2 | 3 | # value 4 | 5 | `val value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L753) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix-serializer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrixSerializer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `ColorMatrixSerializer()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `ColorMatrix(matrix: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-p-c_-f-c-c.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [PC_FCC](./-p-c_-f-c-c.md) 2 | 3 | # PC_FCC 4 | 5 | `val PC_FCC: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L726) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-p-c_2020.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [PC_2020](./-p-c_2020.md) 2 | 3 | # PC_2020 4 | 5 | `val PC_2020: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L730) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-p-c_240-m.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [PC_240M](./-p-c_240-m.md) 2 | 3 | # PC_240M 4 | 5 | `val PC_240M: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L728) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-p-c_601.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [PC_601](./-p-c_601.md) 2 | 3 | # PC_601 4 | 5 | `val PC_601: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L722) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-p-c_709.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [PC_709](./-p-c_709.md) 2 | 3 | # PC_709 4 | 5 | `val PC_709: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L724) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-t-v_-f-c-c.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [TV_FCC](./-t-v_-f-c-c.md) 2 | 3 | # TV_FCC 4 | 5 | `val TV_FCC: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L725) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-t-v_2020.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [TV_2020](./-t-v_2020.md) 2 | 3 | # TV_2020 4 | 5 | `val TV_2020: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L729) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-t-v_240-m.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [TV_240M](./-t-v_240-m.md) 2 | 3 | # TV_240M 4 | 5 | `val TV_240M: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L727) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-t-v_601.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [TV_601](./-t-v_601.md) 2 | 3 | # TV_601 4 | 5 | `val TV_601: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L721) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/-t-v_709.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [TV_709](./-t-v_709.md) 2 | 3 | # TV_709 4 | 5 | `val TV_709: `[`ColorMatrix`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L723) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-color-matrix/matrix.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ColorMatrix](index.md) / [matrix](./matrix.md) 2 | 3 | # matrix 4 | 5 | `val matrix: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L719) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-custom-serializer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [CustomSerializer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `CustomSerializer(serializer: `[`KClass`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html)`>)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line-accessor/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLineAccessor](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `open fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L446) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/actor.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [actor](./actor.md) 2 | 3 | # actor 4 | 5 | `var actor: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L465) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/comment.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [comment](./comment.md) 2 | 3 | # comment 4 | 5 | `var comment: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L493) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/effect.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [effect](./effect.md) 2 | 3 | # effect 4 | 5 | `var effect: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L473) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/end.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [end](./end.md) 2 | 3 | # end 4 | 5 | `var end: `[`Duration`](https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L461) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/extra-data-pattern.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [extraDataPattern](./extra-data-pattern.md) 2 | 3 | # extraDataPattern 4 | 5 | `val extraDataPattern: `[`Regex`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L481) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/layer.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [layer](./layer.md) 2 | 3 | # layer 4 | 5 | `var layer: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L457) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/margin-l.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [marginL](./margin-l.md) 2 | 3 | # marginL 4 | 5 | `var marginL: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L467) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/margin-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [marginR](./margin-r.md) 2 | 3 | # marginR 4 | 5 | `var marginR: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L469) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/margin-v.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [marginV](./margin-v.md) 2 | 3 | # marginV 4 | 5 | `var marginV: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L471) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/start.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [start](./start.md) 2 | 3 | # start 4 | 5 | `var start: `[`Duration`](https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L459) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/style.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [style](./style.md) 2 | 3 | # style 4 | 5 | `var style: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L463) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/text.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [text](./text.md) 2 | 3 | # text 4 | 5 | `var text: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L485) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-line/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventLine](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L494) 6 | 7 | Overrides [Line.type](../-line/type.md) 8 | 9 | The type of the line. 10 | 11 | ### Property 12 | 13 | `type` - The type of the line. -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-event-section/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [EventSection](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `EventSection(name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Represents an events section, containing a list of [EventLine](../-event-line/index.md) lines. 8 | 9 | ### Parameters 10 | 11 | `name` - The name of the section, usually `Events`. -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-format-section/format-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [FormatSection](index.md) / [formatString](./format-string.md) 2 | 3 | # formatString 4 | 5 | `fun formatString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L1077) 6 | 7 | Returns a textual representation of the format line that starts the section. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-format-section/lines.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [FormatSection](index.md) / [lines](./lines.md) 2 | 3 | # lines 4 | 5 | `val lines: `[`MutableList`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html)`<`[`T`](index.md#T)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L1014) 6 | 7 | The lines contained in this section. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-key-val-field/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [KeyValField](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `KeyValField(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Annotates a property in a [KeyValSection](../-key-val-section/index.md) with the corresponding ASS key. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-key-val-field/key.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [KeyValField](index.md) / [key](./key.md) 2 | 3 | # key 4 | 5 | `val key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L628) 6 | 7 | The name of the corresponding key in ASS. 8 | 9 | ### Property 10 | 11 | `key` - The name of the corresponding key in ASS. -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-key-val-line/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [KeyValLine](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `KeyValLine(type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Corresponds to a raw ASS line represented textually as `Type: Value`, 8 | with the value unparsed. 9 | 10 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-key-val-line/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [KeyValLine](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L257) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-key-val-line/value.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [KeyValLine](index.md) / [value](./value.md) 2 | 3 | # value 4 | 5 | `val value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L256) 6 | 7 | The value of this line. 8 | 9 | ### Property 10 | 11 | `value` - The value of this line. -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-key-val-section/-key-val-delegate/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.ass](../../index.md) / [KeyValSection](../index.md) / [KeyValDelegate](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `KeyValDelegate()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-line-accessor/field.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [LineAccessor](index.md) / [field](./field.md) 2 | 3 | # field 4 | 5 | `val field: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L270) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-line-field/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [LineField](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `LineField(field: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Annotates a property in a [MapLine](../-map-line/index.md) with the name of the corresponding ASS field. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-line-field/field.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [LineField](index.md) / [field](./field.md) 2 | 3 | # field 4 | 5 | `val field: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L263) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-line/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [Line](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Line(type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | A basic line with a type. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-line/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [Line](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `open val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L248) 6 | 7 | The type of the line. 8 | 9 | ### Property 10 | 11 | `type` - The type of the line. -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/clear.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [clear](./clear.md) 2 | 3 | # clear 4 | 5 | `open fun clear(): `[`Nothing`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-nothing/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L394) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/contains-key.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [containsKey](./contains-key.md) 2 | 3 | # containsKey 4 | 5 | `open fun containsKey(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L324) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/contains-value.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [containsValue](./contains-value.md) 2 | 3 | # containsValue 4 | 5 | `open fun containsValue(value: `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L326) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/is-empty.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [isEmpty](./is-empty.md) 2 | 3 | # isEmpty 4 | 5 | `open fun isEmpty(): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L336) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/keys.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [keys](./keys.md) 2 | 3 | # keys 4 | 5 | `open val keys: `[`MutableSet`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-set/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L370) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/remove.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [remove](./remove.md) 2 | 3 | # remove 4 | 5 | `open fun remove(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Nothing`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-nothing/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L425) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/size.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [size](./size.md) 2 | 3 | # size 4 | 5 | `open val size: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L321) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-map-line/values.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [MapLine](index.md) / [values](./values.md) 2 | 3 | # values 4 | 5 | `open val values: `[`MutableCollection`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html)`<`[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L382) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-scaled-border-and-shadow-serializer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScaledBorderAndShadowSerializer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `ScaledBorderAndShadowSerializer()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/color-matrix.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [colorMatrix](./color-matrix.md) 2 | 3 | # colorMatrix 4 | 5 | `var colorMatrix: `[`ColorMatrix`](../-color-matrix/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L815) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/editing.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [editing](./editing.md) 2 | 3 | # editing 4 | 5 | `var editing: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L796) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/original-script.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [originalScript](./original-script.md) 2 | 3 | # originalScript 4 | 5 | `var originalScript: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L792) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/play-res-x.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [playResX](./play-res-x.md) 2 | 3 | # playResX 4 | 5 | `var playResX: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L817) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/play-res-y.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [playResY](./play-res-y.md) 2 | 3 | # playResY 4 | 5 | `var playResY: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L819) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/scaled-border-and-shadow.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [scaledBorderAndShadow](./scaled-border-and-shadow.md) 2 | 3 | # scaledBorderAndShadow 4 | 5 | `var scaledBorderAndShadow: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L812) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/script-type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [scriptType](./script-type.md) 2 | 3 | # scriptType 4 | 5 | `var scriptType: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L806) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/synch-point.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [synchPoint](./synch-point.md) 2 | 3 | # synchPoint 4 | 5 | `var synchPoint: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L800) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/timer.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [timer](./timer.md) 2 | 3 | # timer 4 | 5 | `var timer: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L822) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/timing.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [timing](./timing.md) 2 | 3 | # timing 4 | 5 | `var timing: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L798) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/title.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [title](./title.md) 2 | 3 | # title 4 | 5 | `var title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L790) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/translation.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [translation](./translation.md) 2 | 3 | # translation 4 | 5 | `var translation: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L794) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/update-details.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [updateDetails](./update-details.md) 2 | 3 | # updateDetails 4 | 5 | `var updateDetails: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L804) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/updated-by.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [updatedBy](./updated-by.md) 2 | 3 | # updatedBy 4 | 5 | `var updatedBy: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L802) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-script-info-section/wrap-style.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [ScriptInfoSection](index.md) / [wrapStyle](./wrap-style.md) 2 | 3 | # wrapStyle 4 | 5 | `var wrapStyle: `[`WrapStyle`](../-wrap-style/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L809) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-section/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [Section](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Section(name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Represents a section in an ASS file, textually represented as a section name 8 | in square brackets followed by zero or more lines in a `Type: Value` format. 9 | 10 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-a-l-i-g-n-m-e-n-t.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [ALIGNMENT](./-a-l-i-g-n-m-e-n-t.md) 2 | 3 | # ALIGNMENT 4 | 5 | `object ALIGNMENT : `[`StyleLineAccessor`](index.md)`<`[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L521) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-b-o-l-d.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [BOLD](./-b-o-l-d.md) 2 | 3 | # BOLD 4 | 5 | `object BOLD : `[`StyleLineAccessor`](index.md)`<`[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L510) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-b-o-r-d-e-r_-s-t-y-l-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [BORDER_STYLE](./-b-o-r-d-e-r_-s-t-y-l-e.md) 2 | 3 | # BORDER_STYLE 4 | 5 | `object BORDER_STYLE : `[`StyleLineAccessor`](index.md)`<`[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L518) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-e-n-c-o-d-i-n-g.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [ENCODING](./-e-n-c-o-d-i-n-g.md) 2 | 3 | # ENCODING 4 | 5 | `object ENCODING : `[`StyleLineAccessor`](index.md)`<`[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L525) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-f-o-n-t_-n-a-m-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [FONT_NAME](./-f-o-n-t_-n-a-m-e.md) 2 | 3 | # FONT_NAME 4 | 5 | `object FONT_NAME : `[`StyleLineAccessor`](index.md)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L505) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-i-t-a-l-i-c.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [ITALIC](./-i-t-a-l-i-c.md) 2 | 3 | # ITALIC 4 | 5 | `object ITALIC : `[`StyleLineAccessor`](index.md)`<`[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L511) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-m-a-r-g-i-n_-l.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [MARGIN_L](./-m-a-r-g-i-n_-l.md) 2 | 3 | # MARGIN_L 4 | 5 | `object MARGIN_L : `[`StyleLineAccessor`](index.md)`<`[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L522) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-m-a-r-g-i-n_-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [MARGIN_R](./-m-a-r-g-i-n_-r.md) 2 | 3 | # MARGIN_R 4 | 5 | `object MARGIN_R : `[`StyleLineAccessor`](index.md)`<`[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L523) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-m-a-r-g-i-n_-v.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [MARGIN_V](./-m-a-r-g-i-n_-v.md) 2 | 3 | # MARGIN_V 4 | 5 | `object MARGIN_V : `[`StyleLineAccessor`](index.md)`<`[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L524) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-n-a-m-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [NAME](./-n-a-m-e.md) 2 | 3 | # NAME 4 | 5 | `object NAME : `[`StyleLineAccessor`](index.md)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L504) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-o-u-t-l-i-n-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [OUTLINE](./-o-u-t-l-i-n-e.md) 2 | 3 | # OUTLINE 4 | 5 | `object OUTLINE : `[`StyleLineAccessor`](index.md)`<`[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L519) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-o-u-t-l-i-n-e_-c-o-l-o-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [OUTLINE_COLOR](./-o-u-t-l-i-n-e_-c-o-l-o-r.md) 2 | 3 | # OUTLINE_COLOR 4 | 5 | `object OUTLINE_COLOR : `[`StyleLineAccessor`](index.md)`<`[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L508) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-p-r-i-m-a-r-y_-c-o-l-o-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [PRIMARY_COLOR](./-p-r-i-m-a-r-y_-c-o-l-o-r.md) 2 | 3 | # PRIMARY_COLOR 4 | 5 | `object PRIMARY_COLOR : `[`StyleLineAccessor`](index.md)`<`[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L506) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-r-o-t-a-t-i-o-n.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [ROTATION](./-r-o-t-a-t-i-o-n.md) 2 | 3 | # ROTATION 4 | 5 | `object ROTATION : `[`StyleLineAccessor`](index.md)`<`[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L517) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-c-a-l-e_-x.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [SCALE_X](./-s-c-a-l-e_-x.md) 2 | 3 | # SCALE_X 4 | 5 | `object SCALE_X : `[`StyleLineAccessor`](index.md)`<`[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L514) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-c-a-l-e_-y.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [SCALE_Y](./-s-c-a-l-e_-y.md) 2 | 3 | # SCALE_Y 4 | 5 | `object SCALE_Y : `[`StyleLineAccessor`](index.md)`<`[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L515) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-e-c-o-n-d-a-r-y_-c-o-l-o-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [SECONDARY_COLOR](./-s-e-c-o-n-d-a-r-y_-c-o-l-o-r.md) 2 | 3 | # SECONDARY_COLOR 4 | 5 | `object SECONDARY_COLOR : `[`StyleLineAccessor`](index.md)`<`[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L507) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-h-a-d-o-w.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [SHADOW](./-s-h-a-d-o-w.md) 2 | 3 | # SHADOW 4 | 5 | `object SHADOW : `[`StyleLineAccessor`](index.md)`<`[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L520) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-h-a-d-o-w_-c-o-l-o-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [SHADOW_COLOR](./-s-h-a-d-o-w_-c-o-l-o-r.md) 2 | 3 | # SHADOW_COLOR 4 | 5 | `object SHADOW_COLOR : `[`StyleLineAccessor`](index.md)`<`[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L509) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-p-a-c-i-n-g.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [SPACING](./-s-p-a-c-i-n-g.md) 2 | 3 | # SPACING 4 | 5 | `object SPACING : `[`StyleLineAccessor`](index.md)`<`[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L516) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-s-t-r-i-k-e-o-u-t.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [STRIKEOUT](./-s-t-r-i-k-e-o-u-t.md) 2 | 3 | # STRIKEOUT 4 | 5 | `object STRIKEOUT : `[`StyleLineAccessor`](index.md)`<`[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L513) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line-accessor/-u-n-d-e-r-l-i-n-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLineAccessor](index.md) / [UNDERLINE](./-u-n-d-e-r-l-i-n-e.md) 2 | 3 | # UNDERLINE 4 | 5 | `object UNDERLINE : `[`StyleLineAccessor`](index.md)`<`[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L512) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/alignment.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [alignment](./alignment.md) 2 | 3 | # alignment 4 | 5 | `var alignment: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L572) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/bold.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [bold](./bold.md) 2 | 3 | # bold 4 | 5 | `var bold: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L550) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/border-style.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [borderStyle](./border-style.md) 2 | 3 | # borderStyle 4 | 5 | `var borderStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L566) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/encoding.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [encoding](./encoding.md) 2 | 3 | # encoding 4 | 5 | `var encoding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L580) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/font-size.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [fontSize](./font-size.md) 2 | 3 | # fontSize 4 | 5 | `var fontSize: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L540) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/font.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [font](./font.md) 2 | 3 | # font 4 | 5 | `var font: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L538) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/italic.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [italic](./italic.md) 2 | 3 | # italic 4 | 5 | `var italic: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L552) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/margin-l.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [marginL](./margin-l.md) 2 | 3 | # marginL 4 | 5 | `var marginL: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L574) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/margin-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [marginR](./margin-r.md) 2 | 3 | # marginR 4 | 5 | `var marginR: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L576) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/margin-v.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [marginV](./margin-v.md) 2 | 3 | # marginV 4 | 5 | `var marginV: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L578) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [name](./name.md) 2 | 3 | # name 4 | 5 | `var name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L536) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/outline-color.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [outlineColor](./outline-color.md) 2 | 3 | # outlineColor 4 | 5 | `var outlineColor: `[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L546) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/outline.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [outline](./outline.md) 2 | 3 | # outline 4 | 5 | `var outline: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L568) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/primary-color.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [primaryColor](./primary-color.md) 2 | 3 | # primaryColor 4 | 5 | `var primaryColor: `[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L542) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/rotation.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [rotation](./rotation.md) 2 | 3 | # rotation 4 | 5 | `var rotation: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L564) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/scale-x.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [scaleX](./scale-x.md) 2 | 3 | # scaleX 4 | 5 | `var scaleX: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L558) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/scale-y.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [scaleY](./scale-y.md) 2 | 3 | # scaleY 4 | 5 | `var scaleY: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L560) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/secondary-color.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [secondaryColor](./secondary-color.md) 2 | 3 | # secondaryColor 4 | 5 | `var secondaryColor: `[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L544) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/shadow-color.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [shadowColor](./shadow-color.md) 2 | 3 | # shadowColor 4 | 5 | `var shadowColor: `[`Color`](https://docs.oracle.com/javase/9/docs/api/java/awt/Color.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L548) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/shadow.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [shadow](./shadow.md) 2 | 3 | # shadow 4 | 5 | `var shadow: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L570) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/spacing.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [spacing](./spacing.md) 2 | 3 | # spacing 4 | 5 | `var spacing: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L562) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/strikeout.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [strikeout](./strikeout.md) 2 | 3 | # strikeout 4 | 5 | `var strikeout: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L556) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-line/underline.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleLine](index.md) / [underline](./underline.md) 2 | 3 | # underline 4 | 5 | `var underline: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L554) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-style-section/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [StyleSection](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `StyleSection(name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Represents a styles section, containing a list of [StyleLine](../-style-line/index.md) lines. 8 | 9 | ### Parameters 10 | 11 | `name` - The name of the section, usually `V4+ Styles`. -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-timer-serializer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [TimerSerializer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `TimerSerializer()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-wrap-style-serializer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [WrapStyleSerializer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `WrapStyleSerializer()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-wrap-style/-e-n-d_-o-f_-l-i-n-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [WrapStyle](index.md) / [END_OF_LINE](./-e-n-d_-o-f_-l-i-n-e.md) 2 | 3 | # END_OF_LINE 4 | 5 | `END_OF_LINE` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L742) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-wrap-style/-n-o_-w-r-a-p.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [WrapStyle](index.md) / [NO_WRAP](./-n-o_-w-r-a-p.md) 2 | 3 | # NO_WRAP 4 | 5 | `NO_WRAP` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L743) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-wrap-style/-s-m-a-r-t.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [WrapStyle](index.md) / [SMART](./-s-m-a-r-t.md) 2 | 3 | # SMART 4 | 5 | `SMART` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L741) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.ass/-wrap-style/-s-m-a-r-t_-b-o-t-t-o-m-w-i-d-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.ass](../index.md) / [WrapStyle](index.md) / [SMART_BOTTOMWIDE](./-s-m-a-r-t_-b-o-t-t-o-m-w-i-d-e.md) 2 | 3 | # SMART_BOTTOMWIDE 4 | 5 | `SMART_BOTTOMWIDE` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/ass/parser.kt#L744) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-font-report/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [FontReport](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `FontReport(fontFiles: `[`Set`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html)`<`[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`>)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-font-report/unused-fonts.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [FontReport](index.md) / [unusedFonts](./unused-fonts.md) 2 | 3 | # unusedFonts 4 | 5 | `fun unusedFonts(): `[`Set`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html)`<`[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L366) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-font-report/used-font.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [FontReport](index.md) / [usedFont](./used-font.md) 2 | 3 | # usedFont 4 | 5 | `fun usedFont(font: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L279) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment-property/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachmentProperty](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MkvAttachmentProperty(uid: `[`BigInteger`](https://docs.oracle.com/javase/9/docs/api/java/math/BigInteger.html)`? = null)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment-property/uid.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachmentProperty](index.md) / [uid](./uid.md) 2 | 3 | # uid 4 | 5 | `val uid: `[`BigInteger`](https://docs.oracle.com/javase/9/docs/api/java/math/BigInteger.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L18) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/content_type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [content_type](./content_type.md) 2 | 3 | # content_type 4 | 5 | `val content_type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L26) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/description.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [description](./description.md) 2 | 3 | # description 4 | 5 | `val description: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L27) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/file_name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [file_name](./file_name.md) 2 | 3 | # file_name 4 | 5 | `val file_name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L22) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [id](./id.md) 2 | 3 | # id 4 | 5 | `val id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L23) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/properties.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [properties](./properties.md) 2 | 3 | # properties 4 | 5 | `val properties: `[`MkvAttachmentProperty`](../-mkv-attachment-property/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L24) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/size.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [size](./size.md) 2 | 3 | # size 4 | 5 | `val size: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L25) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-attachment/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvAttachment](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L28) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-chapter/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvChapter](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MkvChapter(num_entries: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-chapter/num_entries.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvChapter](index.md) / [num_entries](./num_entries.md) 2 | 3 | # num_entries 4 | 5 | `val num_entries: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L32) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties-program/program_number.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerPropertiesProgram](index.md) / [program_number](./program_number.md) 2 | 3 | # program_number 4 | 5 | `val program_number: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L45) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties-program/service_name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerPropertiesProgram](index.md) / [service_name](./service_name.md) 2 | 3 | # service_name 4 | 5 | `val service_name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L46) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties-program/service_provider.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerPropertiesProgram](index.md) / [service_provider](./service_provider.md) 2 | 3 | # service_provider 4 | 5 | `val service_provider: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L47) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/container_type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [container_type](./container_type.md) 2 | 3 | # container_type 4 | 5 | `val container_type: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L51) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/date_local.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [date_local](./date_local.md) 2 | 3 | # date_local 4 | 5 | `val date_local: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L52) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/date_utc.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [date_utc](./date_utc.md) 2 | 3 | # date_utc 4 | 5 | `val date_utc: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L53) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/duration.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [duration](./duration.md) 2 | 3 | # duration 4 | 5 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L54) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/is_providing_timestamps.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [is_providing_timestamps](./is_providing_timestamps.md) 2 | 3 | # is_providing_timestamps 4 | 5 | `val is_providing_timestamps: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L55) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/muxing_application.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [muxing_application](./muxing_application.md) 2 | 3 | # muxing_application 4 | 5 | `val muxing_application: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L56) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/next_segment_uid.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [next_segment_uid](./next_segment_uid.md) 2 | 3 | # next_segment_uid 4 | 5 | `val next_segment_uid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L57) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/playlist.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [playlist](./playlist.md) 2 | 3 | # playlist 4 | 5 | `val playlist: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L59) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/playlist_chapters.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [playlist_chapters](./playlist_chapters.md) 2 | 3 | # playlist_chapters 4 | 5 | `val playlist_chapters: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L60) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/playlist_duration.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [playlist_duration](./playlist_duration.md) 2 | 3 | # playlist_duration 4 | 5 | `val playlist_duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L61) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/playlist_size.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [playlist_size](./playlist_size.md) 2 | 3 | # playlist_size 4 | 5 | `val playlist_size: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L63) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/previous_segment_uid.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [previous_segment_uid](./previous_segment_uid.md) 2 | 3 | # previous_segment_uid 4 | 5 | `val previous_segment_uid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L64) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/segment_uid.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [segment_uid](./segment_uid.md) 2 | 3 | # segment_uid 4 | 5 | `val segment_uid: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L66) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/title.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [title](./title.md) 2 | 3 | # title 4 | 5 | `val title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L67) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container-properties/writing_application.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainerProperties](index.md) / [writing_application](./writing_application.md) 2 | 3 | # writing_application 4 | 5 | `val writing_application: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L68) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container/properties.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainer](index.md) / [properties](./properties.md) 2 | 3 | # properties 4 | 5 | `val properties: `[`MkvContainerProperties`](../-mkv-container-properties/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L72) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container/recognized.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainer](index.md) / [recognized](./recognized.md) 2 | 3 | # recognized 4 | 5 | `val recognized: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L73) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container/supported.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainer](index.md) / [supported](./supported.md) 2 | 3 | # supported 4 | 5 | `val supported: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L74) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-container/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvContainer](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L75) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-global-tag/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvGlobalTag](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MkvGlobalTag(num_entries: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-global-tag/num_entries.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvGlobalTag](index.md) / [num_entries](./num_entries.md) 2 | 3 | # num_entries 4 | 5 | `val num_entries: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L36) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/attachments.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [attachments](./attachments.md) 2 | 3 | # attachments 4 | 5 | `val attachments: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvAttachment`](../-mkv-attachment/index.md)`>?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L125) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/audio_tracks.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [audio_tracks](./audio_tracks.md) 2 | 3 | # audio_tracks 4 | 5 | `val audio_tracks: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvTrack`](../-mkv-track/index.md)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L139) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/chapters.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [chapters](./chapters.md) 2 | 3 | # chapters 4 | 5 | `val chapters: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvChapter`](../-mkv-chapter/index.md)`>?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L126) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/container.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [container](./container.md) 2 | 3 | # container 4 | 5 | `val container: `[`MkvContainer`](../-mkv-container/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L127) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/errors.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [errors](./errors.md) 2 | 3 | # errors 4 | 5 | `val errors: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L128) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/file_name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [file_name](./file_name.md) 2 | 3 | # file_name 4 | 5 | `val file_name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L129) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/global_tags.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [global_tags](./global_tags.md) 2 | 3 | # global_tags 4 | 5 | `val global_tags: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvGlobalTag`](../-mkv-global-tag/index.md)`>?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L130) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/identification_format_version.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [identification_format_version](./identification_format_version.md) 2 | 3 | # identification_format_version 4 | 5 | `val identification_format_version: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L131) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/subtitles_tracks.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [subtitles_tracks](./subtitles_tracks.md) 2 | 3 | # subtitles_tracks 4 | 5 | `val subtitles_tracks: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvTrack`](../-mkv-track/index.md)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L142) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/track_tags.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [track_tags](./track_tags.md) 2 | 3 | # track_tags 4 | 5 | `val track_tags: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvTrackTag`](../-mkv-track-tag/index.md)`>?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L132) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/tracks.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [tracks](./tracks.md) 2 | 3 | # tracks 4 | 5 | `val tracks: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvTrack`](../-mkv-track/index.md)`>?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L133) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/video_tracks.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [video_tracks](./video_tracks.md) 2 | 3 | # video_tracks 4 | 5 | `val video_tracks: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`MkvTrack`](../-mkv-track/index.md)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L136) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-info/warnings.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvInfo](index.md) / [warnings](./warnings.md) 2 | 3 | # warnings 4 | 5 | `val warnings: `[`List`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L134) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/aac_is_sbr.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [aac_is_sbr](./aac_is_sbr.md) 2 | 3 | # aac_is_sbr 4 | 5 | `val aac_is_sbr: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L79) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/audio_bits_per_sample.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [audio_bits_per_sample](./audio_bits_per_sample.md) 2 | 3 | # audio_bits_per_sample 4 | 5 | `val audio_bits_per_sample: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L80) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/audio_channels.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [audio_channels](./audio_channels.md) 2 | 3 | # audio_channels 4 | 5 | `val audio_channels: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L81) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/audio_sampling_frequency.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [audio_sampling_frequency](./audio_sampling_frequency.md) 2 | 3 | # audio_sampling_frequency 4 | 5 | `val audio_sampling_frequency: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L82) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/codec_delay.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [codec_delay](./codec_delay.md) 2 | 3 | # codec_delay 4 | 5 | `val codec_delay: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L83) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/codec_id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [codec_id](./codec_id.md) 2 | 3 | # codec_id 4 | 5 | `val codec_id: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L84) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/codec_name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [codec_name](./codec_name.md) 2 | 3 | # codec_name 4 | 5 | `val codec_name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L85) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/codec_private_data.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [codec_private_data](./codec_private_data.md) 2 | 3 | # codec_private_data 4 | 5 | `val codec_private_data: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L86) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/codec_private_length.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [codec_private_length](./codec_private_length.md) 2 | 3 | # codec_private_length 4 | 5 | `val codec_private_length: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L87) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/default_duration.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [default_duration](./default_duration.md) 2 | 3 | # default_duration 4 | 5 | `val default_duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L89) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/default_track.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [default_track](./default_track.md) 2 | 3 | # default_track 4 | 5 | `val default_track: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L90) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/display_dimensions.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [display_dimensions](./display_dimensions.md) 2 | 3 | # display_dimensions 4 | 5 | `val display_dimensions: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L91) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/display_unit.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [display_unit](./display_unit.md) 2 | 3 | # display_unit 4 | 5 | `val display_unit: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L92) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/enabled_track.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [enabled_track](./enabled_track.md) 2 | 3 | # enabled_track 4 | 5 | `val enabled_track: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L93) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/encoding.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [encoding](./encoding.md) 2 | 3 | # encoding 4 | 5 | `val encoding: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L94) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/forced_track.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [forced_track](./forced_track.md) 2 | 3 | # forced_track 4 | 5 | `val forced_track: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L95) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/language.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [language](./language.md) 2 | 3 | # language 4 | 5 | `val language: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L96) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/minimum_timestamp.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [minimum_timestamp](./minimum_timestamp.md) 2 | 3 | # minimum_timestamp 4 | 5 | `val minimum_timestamp: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L97) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/number.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [number](./number.md) 2 | 3 | # number 4 | 5 | `val number: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L99) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/packetizer.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [packetizer](./packetizer.md) 2 | 3 | # packetizer 4 | 5 | `val packetizer: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L100) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/pixel_dimensions.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [pixel_dimensions](./pixel_dimensions.md) 2 | 3 | # pixel_dimensions 4 | 5 | `val pixel_dimensions: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L101) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/program_number.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [program_number](./program_number.md) 2 | 3 | # program_number 4 | 5 | `val program_number: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L102) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/stereo_mode.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [stereo_mode](./stereo_mode.md) 2 | 3 | # stereo_mode 4 | 5 | `val stereo_mode: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L103) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/stream_id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [stream_id](./stream_id.md) 2 | 3 | # stream_id 4 | 5 | `val stream_id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L104) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/sub_stream_id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [sub_stream_id](./sub_stream_id.md) 2 | 3 | # sub_stream_id 4 | 5 | `val sub_stream_id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L105) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/tag_artist.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [tag_artist](./tag_artist.md) 2 | 3 | # tag_artist 4 | 5 | `val tag_artist: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L106) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/tag_bitsps.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [tag_bitsps](./tag_bitsps.md) 2 | 3 | # tag_bitsps 4 | 5 | `val tag_bitsps: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L107) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/tag_bps.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [tag_bps](./tag_bps.md) 2 | 3 | # tag_bps 4 | 5 | `val tag_bps: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L108) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/tag_fps.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [tag_fps](./tag_fps.md) 2 | 3 | # tag_fps 4 | 5 | `val tag_fps: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L109) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/tag_title.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [tag_title](./tag_title.md) 2 | 3 | # tag_title 4 | 5 | `val tag_title: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L110) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/teletext_page.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [teletext_page](./teletext_page.md) 2 | 3 | # teletext_page 4 | 5 | `val teletext_page: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L111) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/text_subtitles.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [text_subtitles](./text_subtitles.md) 2 | 3 | # text_subtitles 4 | 5 | `val text_subtitles: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L112) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/track_name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [track_name](./track_name.md) 2 | 3 | # track_name 4 | 5 | `val track_name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L113) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-properties/uid.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackProperties](index.md) / [uid](./uid.md) 2 | 3 | # uid 4 | 5 | `val uid: `[`BigInteger`](https://docs.oracle.com/javase/9/docs/api/java/math/BigInteger.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L114) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-tag/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackTag](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MkvTrackTag(num_entries: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`, track_id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-tag/num_entries.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackTag](index.md) / [num_entries](./num_entries.md) 2 | 3 | # num_entries 4 | 5 | `val num_entries: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L40) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track-tag/track_id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrackTag](index.md) / [track_id](./track_id.md) 2 | 3 | # track_id 4 | 5 | `val track_id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L41) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track/codec.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrack](index.md) / [codec](./codec.md) 2 | 3 | # codec 4 | 5 | `val codec: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L118) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track/id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrack](index.md) / [id](./id.md) 2 | 3 | # id 4 | 5 | `val id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L119) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track/properties.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrack](index.md) / [properties](./properties.md) 2 | 3 | # properties 4 | 5 | `val properties: `[`MkvTrackProperties`](../-mkv-track-properties/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L121) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-mkv-track/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [MkvTrack](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/mkvmerge.kt#L120) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-state/drawing.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [State](index.md) / [drawing](./drawing.md) 2 | 3 | # drawing 4 | 5 | `val drawing: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L15) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-state/font.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [State](index.md) / [font](./font.md) 2 | 3 | # font 4 | 5 | `val font: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L14) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-state/italic.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [State](index.md) / [italic](./italic.md) 2 | 3 | # italic 4 | 5 | `val italic: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L14) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-state/weight.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [State](index.md) / [weight](./weight.md) 2 | 3 | # weight 4 | 5 | `val weight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L14) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks.utils/-state/wrap-style.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks.utils](../index.md) / [State](index.md) / [wrapStyle](./wrap-style.md) 2 | 3 | # wrapStyle 4 | 5 | `val wrapStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/utils/fontvalidator.kt#L15) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-a-s-s-task/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ASSTask](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `ASSTask()` 6 | 7 | Represents a task that outputs an ASS file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-a-s-s-task/build-ass.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ASSTask](index.md) / [buildAss](./build-ass.md) 2 | 3 | # buildAss 4 | 5 | `protected abstract fun buildAss(): `[`ASSFile`](../../myaa.subkt.ass/-a-s-s-file/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L52) 6 | 7 | Constructs the ASS file to save. Must be implemented by subtypes. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-a-s-s-task/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ASSTask](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected open fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L54) 6 | 7 | Overrides [PropertyTask.run](../-property-task/run.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/-dest-dir-root-spec/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [AbstractTransferTask](../index.md) / [DestDirRootSpec](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `DestDirRootSpec(rootSpec: CopySpecInternal)` 6 | 7 | [CopySpec](https://docs.gradle.org/current/javadoc/org/gradle/api/file/CopySpec.html) that captures the destination directory. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/-dest-dir-root-spec/resolve-dest-dir.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [AbstractTransferTask](../index.md) / [DestDirRootSpec](index.md) / [resolveDestDir](./resolve-dest-dir.md) 2 | 3 | # resolveDestDir 4 | 5 | `fun resolveDestDir(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1698) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/-file-details/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [AbstractTransferTask](../index.md) / [FileDetails](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `FileDetails(size: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`, modified: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`)` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/-file-details/modified.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [AbstractTransferTask](../index.md) / [FileDetails](index.md) / [modified](./modified.md) 2 | 3 | # modified 4 | 5 | `val modified: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1595) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/-file-details/size.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [AbstractTransferTask](../index.md) / [FileDetails](index.md) / [size](./size.md) 2 | 3 | # size 4 | 5 | `val size: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1595) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [AbstractTransferTask](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `AbstractTransferTask()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/create-client.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [AbstractTransferTask](index.md) / [createClient](./create-client.md) 2 | 3 | # createClient 4 | 5 | `protected abstract fun createClient(): `[`T`](-dest-dir-root-spec/index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1607) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/create-copy-action.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [AbstractTransferTask](index.md) / [createCopyAction](./create-copy-action.md) 2 | 3 | # createCopyAction 4 | 5 | `protected fun createCopyAction(): CopyAction` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1629) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/create-root-spec.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [AbstractTransferTask](index.md) / [createRootSpec](./create-root-spec.md) 2 | 3 | # createRootSpec 4 | 5 | `protected open fun createRootSpec(): `[`AbstractTransferTask.DestDirRootSpec`](-dest-dir-root-spec/index.md)`<`[`T`](-dest-dir-root-spec/index.md#T)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1708) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/get-root-spec.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [AbstractTransferTask](index.md) / [getRootSpec](./get-root-spec.md) 2 | 3 | # getRootSpec 4 | 5 | `open fun getRootSpec(): `[`AbstractTransferTask.DestDirRootSpec`](-dest-dir-root-spec/index.md)`<*>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1710) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-abstract-transfer-task/progress-logger-factory.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [AbstractTransferTask](index.md) / [progressLoggerFactory](./progress-logger-factory.md) 2 | 3 | # progressLoggerFactory 4 | 5 | `protected abstract val progressLoggerFactory: ProgressLoggerFactory` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1605) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-anidex/-anidex-categories/category-id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Anidex](../index.md) / [AnidexCategories](index.md) / [categoryId](./category-id.md) 2 | 3 | # categoryId 4 | 5 | `val categoryId: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1054) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-anidex/-anidex-language/lang-id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Anidex](../index.md) / [AnidexLanguage](index.md) / [langId](./lang-id.md) 2 | 3 | # langId 4 | 5 | `val langId: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1073) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-anidex/out.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Anidex](index.md) / [out](./out.md) 2 | 3 | # out 4 | 5 | `protected val out: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1222) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-anidex/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Anidex](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected open fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1232) 6 | 7 | Overrides [PropertyTask.run](../-property-task/run.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-dialog/button.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [Dialog](index.md) / [button](./button.md) 2 | 3 | # button 4 | 5 | `val button: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L774) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-log-level/-a-s-s-e-r-t.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [LogLevel](index.md) / [ASSERT](./-a-s-s-e-r-t.md) 2 | 3 | # ASSERT 4 | 5 | `ASSERT` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L758) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-log-level/-d-e-b-u-g.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [LogLevel](index.md) / [DEBUG](./-d-e-b-u-g.md) 2 | 3 | # DEBUG 4 | 5 | `DEBUG` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L761) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-log-level/-e-x-c-e-p-t-i-o-n.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [LogLevel](index.md) / [EXCEPTION](./-e-x-c-e-p-t-i-o-n.md) 2 | 3 | # EXCEPTION 4 | 5 | `EXCEPTION` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L757) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-log-level/-i-n-f-o.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [LogLevel](index.md) / [INFO](./-i-n-f-o.md) 2 | 3 | # INFO 4 | 5 | `INFO` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L760) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-log-level/-w-a-r-n-i-n-g.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [LogLevel](index.md) / [WARNING](./-w-a-r-n-i-n-g.md) 2 | 3 | # WARNING 4 | 5 | `WARNING` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L759) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-selection/active.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [Selection](index.md) / [active](./active.md) 2 | 3 | # active 4 | 5 | `val active: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L805) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-selector/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [Selector](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Selector()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/-selector/active.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Automation](../index.md) / [Selector](index.md) / [active](./active.md) 2 | 3 | # active 4 | 5 | `fun active(line: `[`EventLine`](../../../myaa.subkt.ass/-event-line/index.md)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L822) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Automation](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L880) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-automation/selection.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Automation](index.md) / [selection](./selection.md) 2 | 3 | # selection 4 | 5 | `val selection: `[`Provider`](https://docs.gradle.org/current/javadoc/org/gradle/api/provider/Provider.html)`<`[`Automation.Selection`](-selection/index.md)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L812) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-base-context/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [BaseContext](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `BaseContext()` 6 | 7 | Simple base implementation of a Velocity [AbstractContext](https://velocity.apache.org/engine/2.2/apidocs/org/apache/velocity/context/AbstractContext.html). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-base-context/do-get.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [BaseContext](index.md) / [doGet](./do-get.md) 2 | 3 | # doGet 4 | 5 | `protected abstract fun doGet(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L103) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-base-context/internal-get-keys.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [BaseContext](index.md) / [internalGetKeys](./internal-get-keys.md) 2 | 3 | # internalGetKeys 4 | 5 | `open fun internalGetKeys(): `[`Nothing`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-nothing/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L120) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-base-context/internal-get.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [BaseContext](index.md) / [internalGet](./internal-get.md) 2 | 3 | # internalGet 4 | 5 | `open fun internalGet(key: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L108) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-chapters/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Chapters](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected open fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L533) 6 | 7 | Overrides [PropertyTask.run](../-property-task/run.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-author/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Author](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Author()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-embed/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Embed](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Embed()` 6 | 7 | An embed capable of rendering rich text, images and the like. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-field/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Field](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Field()` -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-footer/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Footer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Footer()` 6 | 7 | The footer of an embed. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-image/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Image](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Image()` 6 | 7 | The image of an embed. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-provider/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Provider](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Provider()` 6 | 7 | The provider of an embed. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-thumbnail/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Thumbnail](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Thumbnail()` 6 | 7 | The thumbnail of an embed. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/-video/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Discord](../index.md) / [Video](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Video()` 6 | 7 | The video of an embed. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-discord/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Discord](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/discordtask.kt#L462) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-error-mode/-f-a-i-l.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ErrorMode](index.md) / [FAIL](./-f-a-i-l.md) 2 | 3 | # FAIL 4 | 5 | `FAIL` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L82) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-error-mode/-i-g-n-o-r-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ErrorMode](index.md) / [IGNORE](./-i-g-n-o-r-e.md) 2 | 3 | # IGNORE 4 | 5 | `IGNORE` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L80) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-error-mode/-w-a-r-n.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ErrorMode](index.md) / [WARN](./-w-a-r-n.md) 2 | 3 | # WARN 4 | 5 | `WARN` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L81) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-f-t-p/-certificate-mode/-a-c-c-e-p-t_-a-l-l.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [FTP](../index.md) / [CertificateMode](index.md) / [ACCEPT_ALL](./-a-c-c-e-p-t_-a-l-l.md) 2 | 3 | # ACCEPT_ALL 4 | 5 | `ACCEPT_ALL` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1764) 6 | 7 | Accept all certificates. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-f-t-p/-certificate-mode/-d-e-f-a-u-l-t.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [FTP](../index.md) / [CertificateMode](index.md) / [DEFAULT](./-d-e-f-a-u-l-t.md) 2 | 3 | # DEFAULT 4 | 5 | `DEFAULT` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1754) 6 | 7 | Use the default Java trust manager. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-f-t-p/create-client.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [FTP](index.md) / [createClient](./create-client.md) 2 | 3 | # createClient 4 | 5 | `protected open fun createClient(): FTPClient` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1819) 6 | 7 | Overrides [AbstractTransferTask.createClient](../-abstract-transfer-task/create-client.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-filterable/id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Filterable](index.md) / [id](./id.md) 2 | 3 | # id 4 | 5 | `abstract val id: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L40) 6 | 7 | The ID of the item. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-h-t-t-p/out.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [HTTP](index.md) / [out](./out.md) 2 | 3 | # out 4 | 5 | `protected val out: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1467) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-h-t-t-p/response-json.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [HTTP](index.md) / [responseJson](./response-json.md) 2 | 3 | # responseJson 4 | 5 | `val responseJson: JsonElement` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1479) 6 | 7 | The response as JSON. 8 | 9 | **Getter** 10 | 11 | The response as JSON. 12 | 13 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-h-t-t-p/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [HTTP](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected open fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1481) 6 | 7 | Overrides [PropertyTask.run](../-property-task/run.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-item-group-context/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ItemGroupContext](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `ItemGroupContext()` 6 | 7 | Context for defining groups of objects such as tasks. 8 | 9 | Provides convenience functions for defining tasks and other objects 10 | for all entries associated with this context. 11 | 12 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-item-group-context/subs.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ItemGroupContext](index.md) / [subs](./subs.md) 2 | 3 | # subs 4 | 5 | `protected abstract val subs: `[`Subs`](../-subs/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L73) 6 | 7 | The [Subs](../-subs/index.md) instance all tasks created in this context should be associated with. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-item-group/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ItemGroup](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `ItemGroup(subs: `[`Subs`](../-subs/index.md)`)` 6 | 7 | A group of items of type [T](index.md#T). Has convenience functions 8 | for getting all items belonging to the same entry as a certain task, 9 | or all items corresponding to a specified list of entries. 10 | 11 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-item-group/subs.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ItemGroup](index.md) / [subs](./subs.md) 2 | 3 | # subs 4 | 5 | `val subs: `[`Subs`](../-subs/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L270) 6 | 7 | The [Subs](../-subs/index.md) instance this [ItemGroup](index.md) is associated with. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-file-spec-pair/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [FileSpecPair](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `FileSpecPair(files: `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html)`, spec: `[`Merge.MergeSpecification`](../-merge-specification/index.md)`)` 6 | 7 | Represents a pair of files and corresponding merge specification. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-file-spec-pair/files.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [FileSpecPair](index.md) / [files](./files.md) 2 | 3 | # files 4 | 5 | `val files: `[`Any`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L181) 6 | 7 | Files to merge. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-file-spec-pair/spec.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [FileSpecPair](index.md) / [spec](./spec.md) 2 | 3 | # spec 4 | 5 | `val spec: `[`Merge.MergeSpecification`](../-merge-specification/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L186) 6 | 7 | Merge specification for the files in [FileSpecPair.files](files.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-line-specification/field.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [LineSpecification](index.md) / [field](./field.md) 2 | 3 | # field 4 | 5 | `val field: `[`EventLineAccessor`](../../../myaa.subkt.ass/-event-line-accessor/index.md)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L93) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-line-specification/value.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [LineSpecification](index.md) / [value](./value.md) 2 | 3 | # value 4 | 5 | `val value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L94) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-merge-specification/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [MergeSpecification](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MergeSpecification()` 6 | 7 | Defines how the files associated with this specification should be merged. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-on-negative-timestamp/-d-e-l-e-t-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [OnNegativeTimestamp](index.md) / [DELETE](./-d-e-l-e-t-e.md) 2 | 3 | # DELETE 4 | 5 | `DELETE` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L99) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-on-negative-timestamp/-e-r-r-o-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [OnNegativeTimestamp](index.md) / [ERROR](./-e-r-r-o-r.md) 2 | 3 | # ERROR 4 | 5 | `ERROR` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L98) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-on-negative-timestamp/-f-o-r-c-e_-z-e-r-o.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [OnNegativeTimestamp](index.md) / [FORCE_ZERO](./-f-o-r-c-e_-z-e-r-o.md) 2 | 3 | # FORCE_ZERO 4 | 5 | `FORCE_ZERO` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L100) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-merge/-on-negative-timestamp/-i-g-n-o-r-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Merge](../index.md) / [OnNegativeTimestamp](index.md) / [IGNORE](./-i-g-n-o-r-e.md) 2 | 3 | # IGNORE 4 | 5 | `IGNORE` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/asstasks.kt#L101) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux-flag/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [MuxFlag](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MuxFlag(flag: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`)` 6 | 7 | Marks a property with its corresponding mkvmerge flag. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux-flag/flag.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [MuxFlag](index.md) / [flag](./flag.md) 2 | 3 | # flag 4 | 5 | `val flag: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L26) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/-attachment-info/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Attachment](../index.md) / [AttachmentInfo](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `AttachmentInfo()` 6 | 7 | Stores information extracted from the attachment. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/-attachment-info/content-type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Attachment](../index.md) / [AttachmentInfo](index.md) / [contentType](./content-type.md) 2 | 3 | # contentType 4 | 5 | `val contentType: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L74) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/-attachment-info/file-name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Attachment](../index.md) / [AttachmentInfo](index.md) / [fileName](./file-name.md) 2 | 3 | # fileName 4 | 5 | `val fileName: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L72) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/-attachment-info/size.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Attachment](../index.md) / [AttachmentInfo](index.md) / [size](./size.md) 2 | 3 | # size 4 | 5 | `val size: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L76) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/-attachment-info/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Attachment](../index.md) / [AttachmentInfo](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L78) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Attachment](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Attachment(sourceAttachment: `[`MkvAttachment`](../../../myaa.subkt.tasks.utils/-mkv-attachment/index.md)`)` 6 | 7 | Represents an attachment present in a [MuxFile](../-mux-file/index.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/source-attachment.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Attachment](index.md) / [sourceAttachment](./source-attachment.md) 2 | 3 | # sourceAttachment 4 | 5 | `val sourceAttachment: `[`MkvAttachment`](../../../myaa.subkt.tasks.utils/-mkv-attachment/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L65) 6 | 7 | Raw attachment info from mkvmerge. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-attachment/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Attachment](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L99) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-chapter/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Chapter](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Chapter(file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`)` 6 | 7 | Represents a chapter file to mux, added using [chaptersProperty](../chapters-property.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-chapter/file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Chapter](index.md) / [file](./file.md) 2 | 3 | # file 4 | 5 | `val file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L466) 6 | 7 | The source file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-chapter/sync.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Chapter](index.md) / [sync](./sync.md) 2 | 3 | # sync 4 | 5 | `val sync: `[`Provider`](https://docs.gradle.org/current/javadoc/org/gradle/api/provider/Provider.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L509) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-compression-type/comp.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [CompressionType](index.md) / [comp](./comp.md) 2 | 3 | # comp 4 | 5 | `val comp: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L121) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-compression-type/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [CompressionType](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L126) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-dimensions/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Dimensions](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Dimensions(width: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`, height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` 6 | 7 | Represents the dimensions of a track in pixels. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-dimensions/from-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Dimensions](index.md) / [fromString](./from-string.md) 2 | 3 | # fromString 4 | 5 | `fun fromString(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Mux.Dimensions`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L136) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-dimensions/height.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Dimensions](index.md) / [height](./height.md) 2 | 3 | # height 4 | 5 | `val height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L132) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-dimensions/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Dimensions](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L133) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-dimensions/width.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Dimensions](index.md) / [width](./width.md) 2 | 3 | # width 4 | 5 | `val width: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L132) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-mux-file/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [MuxFile](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `MuxFile(file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`)` 6 | 7 | Represents a file to mux, added using [from](../from.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-mux-file/file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [MuxFile](index.md) / [file](./file.md) 2 | 3 | # file 4 | 5 | `val file: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L344) 6 | 7 | The source file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-mux-file/info.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [MuxFile](index.md) / [info](./info.md) 2 | 3 | # info 4 | 5 | `val info: `[`MkvInfo`](../../../myaa.subkt.tasks.utils/-mkv-info/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L350) 6 | 7 | Raw file info from mkvmerge. 8 | 9 | **Getter** 10 | 11 | Raw file info from mkvmerge. 12 | 13 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-mux-file/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [MuxFile](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L449) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-duration/-duration-unit/unit.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [TrackDuration](../index.md) / [DurationUnit](index.md) / [unit](./unit.md) 2 | 3 | # unit 4 | 5 | `val unit: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L146) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-duration/duration-unit.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [TrackDuration](index.md) / [durationUnit](./duration-unit.md) 2 | 3 | # durationUnit 4 | 5 | `val durationUnit: `[`Mux.TrackDuration.DurationUnit`](-duration-unit/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L145) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-duration/duration.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [TrackDuration](index.md) / [duration](./duration.md) 2 | 3 | # duration 4 | 5 | `val duration: `[`Double`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L145) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-duration/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [TrackDuration](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L156) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-type/find.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [TrackType](index.md) / [find](./find.md) 2 | 3 | # find 4 | 5 | `fun find(s: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`): `[`Mux.TrackType`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L114) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-type/flag.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [TrackType](index.md) / [flag](./flag.md) 2 | 3 | # flag 4 | 5 | `val flag: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L105) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track-type/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [TrackType](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L105) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Track](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `Track(sourceTrack: `[`MkvTrack`](../../../myaa.subkt.tasks.utils/-mkv-track/index.md)`)` 6 | 7 | Represents a single track read from the source file. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `TrackInfo()` 6 | 7 | Stores information extracted from the source track. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/audio-channels.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [audioChannels](./audio-channels.md) 2 | 3 | # audioChannels 4 | 5 | `val audioChannels: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L174) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/codec-id.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [codecId](./codec-id.md) 2 | 3 | # codecId 4 | 5 | `val codecId: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L173) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/codec.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [codec](./codec.md) 2 | 3 | # codec 4 | 5 | `val codec: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L172) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/default.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [default](./default.md) 2 | 3 | # default 4 | 5 | `val default: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L181) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/display-dimensios.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [displayDimensios](./display-dimensios.md) 2 | 3 | # displayDimensios 4 | 5 | `val displayDimensios: `[`Mux.Dimensions`](../../-dimensions/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L183) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/encoding.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [encoding](./encoding.md) 2 | 3 | # encoding 4 | 5 | `val encoding: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L185) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/forced.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [forced](./forced.md) 2 | 3 | # forced 4 | 5 | `val forced: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L182) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/lang.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [lang](./lang.md) 2 | 3 | # lang 4 | 5 | `val lang: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L179) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [name](./name.md) 2 | 3 | # name 4 | 5 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L180) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/pixel-dimensions.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [pixelDimensions](./pixel-dimensions.md) 2 | 3 | # pixelDimensions 4 | 5 | `val pixelDimensions: `[`Mux.Dimensions`](../../-dimensions/index.md)`?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L177) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/type-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [typeString](./type-string.md) 2 | 3 | # typeString 4 | 5 | `val typeString: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L176) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/-track-info/type.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../../index.md) / [myaa.subkt.tasks](../../../index.md) / [Mux](../../index.md) / [Track](../index.md) / [TrackInfo](index.md) / [type](./type.md) 2 | 3 | # type 4 | 5 | `val type: `[`Mux.TrackType`](../../-track-type/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L175) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/source-track.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Track](index.md) / [sourceTrack](./source-track.md) 2 | 3 | # sourceTrack 4 | 5 | `val sourceTrack: `[`MkvTrack`](../../../myaa.subkt.tasks.utils/-mkv-track/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L166) 6 | 7 | Raw track info from mkvmerge. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/sync.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Track](index.md) / [sync](./sync.md) 2 | 3 | # sync 4 | 5 | `val sync: `[`Provider`](https://docs.gradle.org/current/javadoc/org/gradle/api/provider/Provider.html)`<`[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L302) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/-track/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Mux](../index.md) / [Track](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L330) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-mux/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Mux](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected open fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/muxtask.kt#L989) 6 | 7 | Overrides [PropertyTask.run](../-property-task/run.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-nyaa/-nyaa-categories/category.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Nyaa](../index.md) / [NyaaCategories](index.md) / [category](./category.md) 2 | 3 | # category 4 | 5 | `val category: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L790) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-nyaa/out.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Nyaa](index.md) / [out](./out.md) 2 | 3 | # out 4 | 5 | `protected val out: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L938) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-nyaa/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Nyaa](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected open fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L980) 6 | 7 | Overrides [PropertyTask.run](../-property-task/run.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-overwrite-strategy/-a-l-w-a-y-s.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [OverwriteStrategy](index.md) / [ALWAYS](./-a-l-w-a-y-s.md) 2 | 3 | # ALWAYS 4 | 5 | `ALWAYS` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1591) 6 | 7 | Always overwrite. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-overwrite-strategy/-d-i-f-f-e-r-e-n-t_-s-i-z-e.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [OverwriteStrategy](index.md) / [DIFFERENT_SIZE](./-d-i-f-f-e-r-e-n-t_-s-i-z-e.md) 2 | 3 | # DIFFERENT_SIZE 4 | 5 | `DIFFERENT_SIZE` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1581) 6 | 7 | Overwrite if the source file has a different size. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-overwrite-strategy/-n-e-v-e-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [OverwriteStrategy](index.md) / [NEVER](./-n-e-v-e-r.md) 2 | 3 | # NEVER 4 | 5 | `NEVER` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1571) 6 | 7 | Never overwrite existing files. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-overwrite-strategy/-s-o-u-r-c-e_-n-e-w-e-r.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [OverwriteStrategy](index.md) / [SOURCE_NEWER](./-s-o-u-r-c-e_-n-e-w-e-r.md) 2 | 3 | # SOURCE_NEWER 4 | 5 | `SOURCE_NEWER` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1576) 6 | 7 | Overwrite if the source file is newer. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-property-task/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [PropertyTask](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `PropertyTask()` 6 | 7 | Parent task type that automatically keeps track of and stores 8 | properties in JSON format. 9 | 10 | Make use of by declaring a delegated property which delegates to 11 | a [TaskProperty](-task-property/index.md) instance. 12 | 13 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-property-task/-task-property/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [PropertyTask](../index.md) / [TaskProperty](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `TaskProperty(default: () -> `[`T`](index.md#T)`)` 6 | 7 | Delegate for reading properties from a JSON file associated with this task. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-property-task/-task-property/default.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [PropertyTask](../index.md) / [TaskProperty](index.md) / [default](./default.md) 2 | 3 | # default 4 | 5 | `val default: () -> `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L628) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-property-task/do-task.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [PropertyTask](index.md) / [doTask](./do-task.md) 2 | 3 | # doTask 4 | 5 | `protected fun doTask(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L648) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-property-task/property-file.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [PropertyTask](index.md) / [propertyFile](./property-file.md) 2 | 3 | # propertyFile 4 | 5 | `protected val propertyFile: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L617) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-property-task/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [PropertyTask](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `protected abstract fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L638) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-provider-group/action.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ProviderGroup](index.md) / [action](./action.md) 2 | 3 | # action 4 | 5 | `val action: `[`ValueClosure`](../-value-closure/index.md)`<*>.() -> `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L571) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-s-f-t-p/create-client.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SFTP](index.md) / [createClient](./create-client.md) 2 | 3 | # createClient 4 | 5 | `protected open fun createClient(): ChannelSftp` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L2011) 6 | 7 | Overrides [AbstractTransferTask.createClient](../-abstract-transfer-task/create-client.md) 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-s-s-h-exec/run.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SSHExec](index.md) / [run](./run.md) 2 | 3 | # run 4 | 5 | `fun run(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L2094) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-s-s-h-task/create-session.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SSHTask](index.md) / [createSession](./create-session.md) 2 | 3 | # createSession 4 | 5 | `abstract fun createSession(): Session` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L1954) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-copy/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubCopy](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `SubCopy()` 6 | 7 | Wrapper task for [Copy](https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/Copy.html) which implements [SubTask](../-sub-task/index.md), giving access to 8 | [SubTask.item](../-sub-task/item.md) and [SubTask.batchItems](../-sub-task/batch-items.md) for convenience. 9 | 10 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-exec/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubExec](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `SubExec()` 6 | 7 | Wrapper task for [Exec](https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/Exec.html) which implements [SubTask](../-sub-task/index.md), giving access to 8 | [SubTask.item](../-sub-task/item.md) and [SubTask.batchItems](../-sub-task/batch-items.md) for convenience. 9 | 10 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-plugin/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubPlugin](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `SubPlugin()` 6 | 7 | Plugin that adds a [Subs](../-subs/index.md) instance as a DSL extension with the name "subs". 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-plugin/apply.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubPlugin](index.md) / [apply](./apply.md) 2 | 3 | # apply 4 | 5 | `fun apply(project: `[`Project`](https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L758) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-properties/parse.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubProperties](index.md) / [parse](./parse.md) 2 | 3 | # parse 4 | 5 | `fun parse(f: `[`File`](https://docs.oracle.com/javase/9/docs/api/java/io/File.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L61) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-sync/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubSync](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `SubSync()` 6 | 7 | Wrapper task for [Sync](https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/Sync.html) which implements [SubTask](../-sub-task/index.md), giving access to 8 | [SubTask.item](../-sub-task/item.md) and [SubTask.batchItems](../-sub-task/batch-items.md) for convenience. 9 | 10 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-task/item.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubTask](index.md) / [item](./item.md) 2 | 3 | # item 4 | 5 | `open fun `[`ItemGroup`](../-item-group/index.md)`<`[`T`](item.md#T)`>.item(): `[`T`](item.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L605) 6 | 7 | Gets the item from the given item group that corresponds to [entry](../org.gradle.api.-task/entry.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-sub-zip/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [SubZip](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `SubZip()` 6 | 7 | Wrapper task for [Zip](https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/bundling/Zip.html) which implements [SubTask](../-sub-task/index.md), giving access to 8 | [SubTask.item](../-sub-task/item.md) and [SubTask.batchItems](../-sub-task/batch-items.md) for convenience. 9 | 10 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-subs/-sub-context/entry.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [Subs](../index.md) / [SubContext](index.md) / [entry](./entry.md) 2 | 3 | # entry 4 | 5 | `val entry: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L491) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-subs/project.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Subs](index.md) / [project](./project.md) 2 | 3 | # project 4 | 5 | `val project: `[`Project`](https://docs.gradle.org/current/javadoc/org/gradle/api/Project.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L387) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-subs/properties.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Subs](index.md) / [properties](./properties.md) 2 | 3 | # properties 4 | 5 | `val properties: `[`SubProperties`](../-sub-properties/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L394) 6 | 7 | A [SubProperties](../-sub-properties/index.md) instance for looking up properties using [get](get.md) and related functions.. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-subs/subs.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Subs](index.md) / [subs](./subs.md) 2 | 3 | # subs 4 | 5 | `protected open val subs: `[`Subs`](index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L388) 6 | 7 | Overrides [ItemGroupContext.subs](../-item-group-context/subs.md) 8 | 9 | The [Subs](index.md) instance all tasks created in this context should be associated with. 10 | 11 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-context/task.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskContext](index.md) / [task](./task.md) 2 | 3 | # task 4 | 5 | `val task: `[`Task`](https://docs.gradle.org/current/javadoc/org/gradle/api/Task.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/plugin.kt#L226) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-creator/-wrapper-delegate/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [TaskCreator](../index.md) / [WrapperDelegate](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `WrapperDelegate(item: `[`T`](index.md#T)`)` 6 | 7 | Delegate which always returns the constant [item](item.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-creator/-wrapper-delegate/item.md: -------------------------------------------------------------------------------- 1 | [subkt](../../../index.md) / [myaa.subkt.tasks](../../index.md) / [TaskCreator](../index.md) / [WrapperDelegate](index.md) / [item](./item.md) 2 | 3 | # item 4 | 5 | `val item: `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L243) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-creator/context.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskCreator](index.md) / [context](./context.md) 2 | 3 | # context 4 | 5 | `val context: `[`ItemGroupContext`](../-item-group-context/index.md) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L230) 6 | 7 | The context this delegate belongs to. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-creator/init-action.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskCreator](index.md) / [initAction](./init-action.md) 2 | 3 | # initAction 4 | 5 | `val initAction: (`[`T`](index.md#T)`.() -> `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html)`)?` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L238) 6 | 7 | An optional closure for configuring the task. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-creator/klass.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskCreator](index.md) / [klass](./klass.md) 2 | 3 | # klass 4 | 5 | `val klass: `[`KClass`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html)`<`[`T`](index.md#T)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L234) 6 | 7 | The type of the task to create. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-group/-init-.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskGroup](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `TaskGroup(name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`, subs: `[`Subs`](../-subs/index.md)`, klass: `[`KClass`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html)`<`[`T`](index.md#T)`>)` 6 | 7 | A group of tasks of the same type. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-group/klass.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskGroup](index.md) / [klass](./klass.md) 2 | 3 | # klass 4 | 5 | `val klass: `[`KClass`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-class/index.html)`<`[`T`](index.md#T)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L338) 6 | 7 | The class object of the task type for this group. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-group/name.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskGroup](index.md) / [name](./name.md) 2 | 3 | # name 4 | 5 | `val name: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L333) 6 | 7 | The name of this task group. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-task-group/to-string.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [TaskGroup](index.md) / [toString](./to-string.md) 2 | 3 | # toString 4 | 5 | `fun toString(): `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L369) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-torrent/create-copy-action.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [Torrent](index.md) / [createCopyAction](./create-copy-action.md) 2 | 3 | # createCopyAction 4 | 5 | `protected open fun createCopyAction(): CopyAction` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L713) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/batch.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [batch](./batch.md) 2 | 3 | # batch 4 | 5 | `val batch: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L448) 6 | 7 | Alias of [entry](entry.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/entry.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [entry](./entry.md) 2 | 3 | # entry 4 | 5 | `val entry: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L426) 6 | 7 | The entry this value corresponds to. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/episode.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [episode](./episode.md) 2 | 3 | # episode 4 | 5 | `val episode: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L453) 6 | 7 | Alias of [entry](entry.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/is-batch.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [isBatch](./is-batch.md) 2 | 3 | # isBatch 4 | 5 | `val isBatch: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L430) 6 | 7 | Whether this entry is a batch entry. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/item.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [item](./item.md) 2 | 3 | # item 4 | 5 | `fun `[`ItemGroup`](../-item-group/index.md)`<`[`U`](item.md#U)`>.item(): `[`U`](item.md#U) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L463) 6 | 7 | Gets the item from the given item group that corresponds to [entry](entry.md). 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/release.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [release](./release.md) 2 | 3 | # release 4 | 5 | `val release: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`!` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L443) 6 | 7 | The current release. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-closure/task-group.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueClosure](index.md) / [taskGroup](./task-group.md) 2 | 3 | # taskGroup 4 | 5 | `val taskGroup: `[`ItemGroup`](../-item-group/index.md)`<`[`T`](-closure-context/index.md#T)`>` [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L438) 6 | 7 | The item group this value belongs to. 8 | 9 | -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/-value-group/action.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [ValueGroup](index.md) / [action](./action.md) 2 | 3 | # action 4 | 5 | `val action: `[`ValueClosure`](../-value-closure/index.md)`<`[`T`](index.md#T)`>.() -> `[`T`](index.md#T) [(source)](https://github.com/Myaamori/SubKt/blob/0.1.19/src/main/kotlin/myaa/subkt/tasks/tasks.kt#L560) -------------------------------------------------------------------------------- /docs/subkt/myaa.subkt.tasks/kotlin.-string/index.md: -------------------------------------------------------------------------------- 1 | [subkt](../../index.md) / [myaa.subkt.tasks](../index.md) / [kotlin.String](./index.md) 2 | 3 | ### Extensions for kotlin.String 4 | 5 | | Name | Summary | 6 | |---|---| 7 | | [asType](as-type.md) | `fun `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)`.asType(): `[`T`](as-type.md#T)
Converts a string to the specified type. | 8 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.warning.mode=all 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myaamori/SubKt/9115c61af3290c86bb70ed3a07420fed935edb82/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "subkt" 2 | -------------------------------------------------------------------------------- /template/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.warning.mode=all 2 | org.gradle.console=verbose 3 | 4 | subktRepo=https://github.com/Myaamori/SubKt.git 5 | subktVersion=0.1.19 6 | -------------------------------------------------------------------------------- /template/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myaamori/SubKt/9115c61af3290c86bb70ed3a07420fed935edb82/template/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | --------------------------------------------------------------------------------