├── .coveragerc ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .pylintrc ├── Dockerfile ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── doc ├── data_model.md ├── imsc_reader.md ├── isd.md ├── references.md ├── scc_reader.md ├── srt_writer.md └── stl_reader.md ├── scripts ├── ci.sh ├── coverage.sh ├── linter.sh └── unit_test.sh ├── setup.py └── src ├── main └── python │ └── ttconv │ ├── __init__.py │ ├── config.py │ ├── filters │ ├── __init__.py │ ├── doc │ │ ├── __init__.py │ │ └── lcd.py │ ├── document_filter.py │ ├── isd │ │ ├── __init__.py │ │ ├── default_style_properties.py │ │ ├── merge_paragraphs.py │ │ ├── merge_regions.py │ │ └── supported_style_properties.py │ ├── isd_filter.py │ ├── remove_animations.py │ └── supported_style_properties.py │ ├── imsc │ ├── __init__.py │ ├── attributes.py │ ├── config.py │ ├── designators.py │ ├── elements.py │ ├── namespaces.py │ ├── reader.py │ ├── style_properties.py │ ├── utils.py │ └── writer.py │ ├── isd.py │ ├── model.py │ ├── scc │ ├── __init__.py │ ├── caption_line.py │ ├── caption_paragraph.py │ ├── caption_style.py │ ├── caption_text.py │ ├── codes │ │ ├── __init__.py │ │ ├── attribute_codes.py │ │ ├── characters.py │ │ ├── control_codes.py │ │ ├── extended_characters.py │ │ ├── mid_row_codes.py │ │ ├── preambles_address_codes.py │ │ ├── special_characters.py │ │ └── standard_characters.py │ ├── config.py │ ├── context.py │ ├── disassembly.py │ ├── dump.py │ ├── line.py │ ├── reader.py │ ├── utils.py │ ├── word.py │ └── writer.py │ ├── srt │ ├── __init__.py │ ├── config.py │ ├── paragraph.py │ ├── reader.py │ ├── style.py │ └── writer.py │ ├── stl │ ├── __init__.py │ ├── config.py │ ├── datafile.py │ ├── iso6937.py │ ├── reader.py │ └── tf.py │ ├── style_properties.py │ ├── time_code.py │ ├── tt.py │ ├── utils.py │ └── vtt │ ├── __init__.py │ ├── config.py │ ├── css_class.py │ ├── cue.py │ ├── reader.py │ ├── style.py │ ├── tokenizer.py │ └── writer.py └── test ├── python ├── __init__.py ├── test_config.py ├── test_filter_default_style_properties.py ├── test_filter_merge_paragraphs.py ├── test_filter_merge_regions.py ├── test_filter_supported_style_properties.py ├── test_imsc_color_parser.py ├── test_imsc_font_families_parser.py ├── test_imsc_position_parser.py ├── test_imsc_reader.py ├── test_imsc_time_expressions.py ├── test_imsc_writer.py ├── test_isd.py ├── test_isd_cache.py ├── test_isd_lwsp.py ├── test_isd_multithreading.py ├── test_iso6937.py ├── test_lcd_filter.py ├── test_model_document.py ├── test_model_element.py ├── test_model_style_properties.py ├── test_progress_logging.py ├── test_scc_attribute_codes.py ├── test_scc_content.py ├── test_scc_control_codes.py ├── test_scc_disassembly.py ├── test_scc_dump.py ├── test_scc_extended_characters.py ├── test_scc_line.py ├── test_scc_mid_row_codes.py ├── test_scc_pacs.py ├── test_scc_paragraph.py ├── test_scc_reader.py ├── test_scc_reader_config.py ├── test_scc_region.py ├── test_scc_special_characters.py ├── test_scc_standard_characters.py ├── test_scc_word.py ├── test_scc_writer.py ├── test_srt_paragraph.py ├── test_srt_reader.py ├── test_srt_reader_writer.py ├── test_srt_style.py ├── test_srt_writer.py ├── test_stl_reader.py ├── test_stl_reader_config.py ├── test_time_code.py ├── test_time_code_smpte.py ├── test_tt.py ├── test_vtt_css_class.py ├── test_vtt_cue.py ├── test_vtt_reader.py ├── test_vtt_style.py ├── test_vtt_tokenizer.py └── test_vtt_writer.py └── resources ├── config_files └── unit_test_cfg.json ├── scc ├── mix-rows-roll-up.scc ├── paint-on.scc └── pop-on.scc ├── stl ├── irt │ ├── LICENSE │ ├── NOTICE │ ├── requirement-0056-001_modified.stl │ ├── requirement-0061-001.stl │ ├── requirement-0061-004_modified.stl │ ├── requirement-0062-001.stl │ ├── requirement-0062-002_modified.stl │ ├── requirement-0067-001.stl │ ├── requirement-0068-001.stl │ ├── requirement-0069-001.stl │ ├── requirement-0071-002.stl │ ├── requirement-0074-001.stl │ ├── requirement-0076-001.stl │ ├── requirement-0076-002.stl │ ├── requirement-0076-003.stl │ ├── requirement-0076-004.stl │ ├── requirement-0076-005.stl │ ├── requirement-0076-006.stl │ ├── requirement-0076-007.stl │ ├── requirement-0076-008.stl │ ├── requirement-0076-009.stl │ ├── requirement-0077-001.stl │ ├── requirement-0077-002.stl │ ├── requirement-0086-001.stl │ ├── requirement-0087-001.stl │ ├── requirement-0090-001.stl │ ├── requirement-0090-002.stl │ ├── requirement-0090-003.stl │ ├── requirement-0090-004.stl │ ├── requirement-0090-005.stl │ ├── requirement-0090-006.stl │ ├── requirement-0090-007.stl │ ├── requirement-0090-008.stl │ ├── requirement-0090-009.stl │ ├── requirement-0091-001.stl │ ├── requirement-0091-002.stl │ ├── requirement-0091-003.stl │ ├── requirement-0091-004.stl │ ├── requirement-0091-005.stl │ ├── requirement-0091-006.stl │ ├── requirement-0091-007.stl │ ├── requirement-0091-008.stl │ └── requirement-0091-009.stl └── sandflow │ ├── br_new_colors.stl │ ├── br_same_colors.stl │ ├── br_style_reset.stl │ ├── cumulative_set.stl │ ├── multi_tti_subtitle.stl │ ├── setting_background_before_startbox.stl │ ├── test_tcp_processing.stl │ ├── vp18_3_lines.stl │ └── vp20_2_newlines.stl ├── ttml ├── body_only.ttml ├── lwsp_default.ttml ├── lwsp_preserve.ttml └── referential_styling.ttml └── vtt ├── alignment.vtt ├── font.vtt ├── position.vtt ├── style.vtt └── wpt-tests ├── LICENSE.md ├── README.txt ├── file-parsing ├── arrows.vtt ├── comment-in-cue-text.vtt ├── header-garbage.vtt ├── header-regions.vtt ├── header-space.vtt ├── header-tab.vtt ├── header-timings.vtt ├── ids.vtt ├── newlines.vtt ├── nulls.vtt ├── regions-edge-case.vtt ├── regions-id.vtt ├── regions-lines.vtt ├── regions-old.vtt ├── regions-regionanchor.vtt ├── regions-scroll.vtt ├── regions-viewportanchor.vtt ├── settings-align.vtt ├── settings-line.vtt ├── settings-multiple.vtt ├── settings-position.vtt ├── settings-region.vtt ├── settings-size.vtt ├── settings-vertical.vtt ├── signature-bom.vtt ├── signature-no-newline.vtt ├── signature-space-no-newline.vtt ├── signature-space.vtt ├── signature-tab-no-newline.vtt ├── signature-tab.vtt ├── signature-timings.vtt ├── stylesheets.vtt ├── timings-60.vtt ├── timings-eof.vtt ├── timings-garbage.vtt ├── timings-negative.vtt ├── timings-omitted-hours.vtt ├── timings-too-long.vtt ├── timings-too-short.vtt └── whitespace-chars.vtt └── rendering ├── 2_cues_overlapping_completely_move_up.vtt ├── 2_cues_overlapping_partially_move_down.vtt ├── 2_cues_overlapping_partially_move_up.vtt ├── align_center.vtt ├── align_center_long.vtt ├── align_center_position_50.vtt ├── align_center_position_gt_50.vtt ├── align_center_position_gt_50_size_gt_maximum_size.vtt ├── align_center_position_lt_50.vtt ├── align_center_position_lt_50_size_gt_maximum_size.vtt ├── align_end.vtt ├── align_end_long.vtt ├── align_start.vtt ├── align_start_long.vtt ├── bidi_ruby.vtt ├── bidi_text-combine-upright.vtt ├── bidi_vertical_lr.vtt ├── bidi_vertical_rl-oneline.vtt ├── bidi_vertical_rl.vtt ├── bold_long.vtt ├── bold_with_2_timestamps.vtt ├── bold_with_timestamp.vtt ├── class_long.vtt ├── class_text-combine-upright.vtt ├── class_with_2_timestamps.vtt ├── class_with_timestamp.vtt ├── cue_with_id.vtt ├── decode_escaped_entities.vtt ├── embedded_style_cascade_priority.vtt ├── embedded_style_cascade_priority_layer.vtt ├── embedded_style_imports_blocked.vtt ├── embedded_style_invalid_format.vtt ├── embedded_style_media_queries.vtt ├── embedded_style_multiple_tracks1.vtt ├── embedded_style_multiple_tracks2.vtt ├── embedded_style_selectors.vtt ├── embedded_style_urls.vtt ├── embedded_style_without_style.vtt ├── foo.vtt ├── foo_c_bar.vtt ├── foo_space_space_bar_LF_baz.vtt ├── italic_long.vtt ├── italic_with_2_timestamps.vtt ├── italic_with_timestamp.vtt ├── line_-2_long.vtt ├── line_0.vtt ├── line_1_long.vtt ├── line_50_percent.vtt ├── line_integer_and_percent_overlap.vtt ├── line_integer_and_percent_overlap_move_up.vtt ├── line_percent_and_integer_overlap.vtt ├── line_percent_and_integer_overlap_move_up.vtt ├── one_line_cue_plus_wrapped_cue.vtt ├── size_50.vtt ├── snap-to-line.vtt ├── start_alignment.vtt ├── test.vtt ├── test_bold.vtt ├── test_bold_with_class.vtt ├── test_class.vtt ├── test_class_with_class.vtt ├── test_italic.vtt ├── test_italic_with_class.vtt ├── test_long.vtt ├── test_two_voices.vtt ├── test_underline.vtt ├── test_underline_with_class.vtt ├── test_voice.vtt ├── test_voice_with_class.vtt ├── too_many_cues.vtt ├── too_many_cues_wrapped.vtt ├── u002E_LF_u05D0.vtt ├── u002E_u2028_u05D0.vtt ├── u002E_u2029_u05D0.vtt ├── u0041_first.vtt ├── u05D0_first.vtt ├── u0628_first.vtt ├── u06E9_no_strong_dir.vtt ├── underline_long.vtt ├── underline_with_2_timestamps.vtt ├── underline_with_timestamp.vtt ├── very_long_cue.vtt ├── voice_long.vtt ├── voice_with_2_timestamps.vtt ├── voice_with_timestamp.vtt ├── white-spaces.vtt ├── white-spaces_long.vtt └── white-spaces_long_size_20.vtt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/.pylintrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/README.md -------------------------------------------------------------------------------- /doc/data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/data_model.md -------------------------------------------------------------------------------- /doc/imsc_reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/imsc_reader.md -------------------------------------------------------------------------------- /doc/isd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/isd.md -------------------------------------------------------------------------------- /doc/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/references.md -------------------------------------------------------------------------------- /doc/scc_reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/scc_reader.md -------------------------------------------------------------------------------- /doc/srt_writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/srt_writer.md -------------------------------------------------------------------------------- /doc/stl_reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/doc/stl_reader.md -------------------------------------------------------------------------------- /scripts/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/scripts/ci.sh -------------------------------------------------------------------------------- /scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/scripts/coverage.sh -------------------------------------------------------------------------------- /scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/scripts/linter.sh -------------------------------------------------------------------------------- /scripts/unit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/scripts/unit_test.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/setup.py -------------------------------------------------------------------------------- /src/main/python/ttconv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/config.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/doc/__init__.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/doc/lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/doc/lcd.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/document_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/document_filter.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/isd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/isd/__init__.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/isd/default_style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/isd/default_style_properties.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/isd/merge_paragraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/isd/merge_paragraphs.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/isd/merge_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/isd/merge_regions.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/isd/supported_style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/isd/supported_style_properties.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/isd_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/isd_filter.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/remove_animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/remove_animations.py -------------------------------------------------------------------------------- /src/main/python/ttconv/filters/supported_style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/filters/supported_style_properties.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/attributes.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/config.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/designators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/designators.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/elements.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/namespaces.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/reader.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/style_properties.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/utils.py -------------------------------------------------------------------------------- /src/main/python/ttconv/imsc/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/imsc/writer.py -------------------------------------------------------------------------------- /src/main/python/ttconv/isd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/isd.py -------------------------------------------------------------------------------- /src/main/python/ttconv/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/model.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/caption_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/caption_line.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/caption_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/caption_paragraph.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/caption_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/caption_style.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/caption_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/caption_text.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/__init__.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/attribute_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/attribute_codes.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/characters.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/control_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/control_codes.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/extended_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/extended_characters.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/mid_row_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/mid_row_codes.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/preambles_address_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/preambles_address_codes.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/special_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/special_characters.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/codes/standard_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/codes/standard_characters.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/config.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/context.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/disassembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/disassembly.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/dump.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/line.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/reader.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/utils.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/word.py -------------------------------------------------------------------------------- /src/main/python/ttconv/scc/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/scc/writer.py -------------------------------------------------------------------------------- /src/main/python/ttconv/srt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/srt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/srt/config.py -------------------------------------------------------------------------------- /src/main/python/ttconv/srt/paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/srt/paragraph.py -------------------------------------------------------------------------------- /src/main/python/ttconv/srt/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/srt/reader.py -------------------------------------------------------------------------------- /src/main/python/ttconv/srt/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/srt/style.py -------------------------------------------------------------------------------- /src/main/python/ttconv/srt/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/srt/writer.py -------------------------------------------------------------------------------- /src/main/python/ttconv/stl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/stl/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/stl/config.py -------------------------------------------------------------------------------- /src/main/python/ttconv/stl/datafile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/stl/datafile.py -------------------------------------------------------------------------------- /src/main/python/ttconv/stl/iso6937.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/stl/iso6937.py -------------------------------------------------------------------------------- /src/main/python/ttconv/stl/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/stl/reader.py -------------------------------------------------------------------------------- /src/main/python/ttconv/stl/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/stl/tf.py -------------------------------------------------------------------------------- /src/main/python/ttconv/style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/style_properties.py -------------------------------------------------------------------------------- /src/main/python/ttconv/time_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/time_code.py -------------------------------------------------------------------------------- /src/main/python/ttconv/tt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/tt.py -------------------------------------------------------------------------------- /src/main/python/ttconv/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/utils.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/config.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/css_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/css_class.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/cue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/cue.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/reader.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/style.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/tokenizer.py -------------------------------------------------------------------------------- /src/main/python/ttconv/vtt/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/main/python/ttconv/vtt/writer.py -------------------------------------------------------------------------------- /src/test/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/python/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_config.py -------------------------------------------------------------------------------- /src/test/python/test_filter_default_style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_filter_default_style_properties.py -------------------------------------------------------------------------------- /src/test/python/test_filter_merge_paragraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_filter_merge_paragraphs.py -------------------------------------------------------------------------------- /src/test/python/test_filter_merge_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_filter_merge_regions.py -------------------------------------------------------------------------------- /src/test/python/test_filter_supported_style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_filter_supported_style_properties.py -------------------------------------------------------------------------------- /src/test/python/test_imsc_color_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_imsc_color_parser.py -------------------------------------------------------------------------------- /src/test/python/test_imsc_font_families_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_imsc_font_families_parser.py -------------------------------------------------------------------------------- /src/test/python/test_imsc_position_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_imsc_position_parser.py -------------------------------------------------------------------------------- /src/test/python/test_imsc_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_imsc_reader.py -------------------------------------------------------------------------------- /src/test/python/test_imsc_time_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_imsc_time_expressions.py -------------------------------------------------------------------------------- /src/test/python/test_imsc_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_imsc_writer.py -------------------------------------------------------------------------------- /src/test/python/test_isd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_isd.py -------------------------------------------------------------------------------- /src/test/python/test_isd_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_isd_cache.py -------------------------------------------------------------------------------- /src/test/python/test_isd_lwsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_isd_lwsp.py -------------------------------------------------------------------------------- /src/test/python/test_isd_multithreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_isd_multithreading.py -------------------------------------------------------------------------------- /src/test/python/test_iso6937.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_iso6937.py -------------------------------------------------------------------------------- /src/test/python/test_lcd_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_lcd_filter.py -------------------------------------------------------------------------------- /src/test/python/test_model_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_model_document.py -------------------------------------------------------------------------------- /src/test/python/test_model_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_model_element.py -------------------------------------------------------------------------------- /src/test/python/test_model_style_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_model_style_properties.py -------------------------------------------------------------------------------- /src/test/python/test_progress_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_progress_logging.py -------------------------------------------------------------------------------- /src/test/python/test_scc_attribute_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_attribute_codes.py -------------------------------------------------------------------------------- /src/test/python/test_scc_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_content.py -------------------------------------------------------------------------------- /src/test/python/test_scc_control_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_control_codes.py -------------------------------------------------------------------------------- /src/test/python/test_scc_disassembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_disassembly.py -------------------------------------------------------------------------------- /src/test/python/test_scc_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_dump.py -------------------------------------------------------------------------------- /src/test/python/test_scc_extended_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_extended_characters.py -------------------------------------------------------------------------------- /src/test/python/test_scc_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_line.py -------------------------------------------------------------------------------- /src/test/python/test_scc_mid_row_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_mid_row_codes.py -------------------------------------------------------------------------------- /src/test/python/test_scc_pacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_pacs.py -------------------------------------------------------------------------------- /src/test/python/test_scc_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_paragraph.py -------------------------------------------------------------------------------- /src/test/python/test_scc_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_reader.py -------------------------------------------------------------------------------- /src/test/python/test_scc_reader_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_reader_config.py -------------------------------------------------------------------------------- /src/test/python/test_scc_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_region.py -------------------------------------------------------------------------------- /src/test/python/test_scc_special_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_special_characters.py -------------------------------------------------------------------------------- /src/test/python/test_scc_standard_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_standard_characters.py -------------------------------------------------------------------------------- /src/test/python/test_scc_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_word.py -------------------------------------------------------------------------------- /src/test/python/test_scc_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_scc_writer.py -------------------------------------------------------------------------------- /src/test/python/test_srt_paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_srt_paragraph.py -------------------------------------------------------------------------------- /src/test/python/test_srt_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_srt_reader.py -------------------------------------------------------------------------------- /src/test/python/test_srt_reader_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_srt_reader_writer.py -------------------------------------------------------------------------------- /src/test/python/test_srt_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_srt_style.py -------------------------------------------------------------------------------- /src/test/python/test_srt_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_srt_writer.py -------------------------------------------------------------------------------- /src/test/python/test_stl_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_stl_reader.py -------------------------------------------------------------------------------- /src/test/python/test_stl_reader_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_stl_reader_config.py -------------------------------------------------------------------------------- /src/test/python/test_time_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_time_code.py -------------------------------------------------------------------------------- /src/test/python/test_time_code_smpte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_time_code_smpte.py -------------------------------------------------------------------------------- /src/test/python/test_tt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_tt.py -------------------------------------------------------------------------------- /src/test/python/test_vtt_css_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_vtt_css_class.py -------------------------------------------------------------------------------- /src/test/python/test_vtt_cue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_vtt_cue.py -------------------------------------------------------------------------------- /src/test/python/test_vtt_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_vtt_reader.py -------------------------------------------------------------------------------- /src/test/python/test_vtt_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_vtt_style.py -------------------------------------------------------------------------------- /src/test/python/test_vtt_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_vtt_tokenizer.py -------------------------------------------------------------------------------- /src/test/python/test_vtt_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/python/test_vtt_writer.py -------------------------------------------------------------------------------- /src/test/resources/config_files/unit_test_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/config_files/unit_test_cfg.json -------------------------------------------------------------------------------- /src/test/resources/scc/mix-rows-roll-up.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/scc/mix-rows-roll-up.scc -------------------------------------------------------------------------------- /src/test/resources/scc/paint-on.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/scc/paint-on.scc -------------------------------------------------------------------------------- /src/test/resources/scc/pop-on.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/scc/pop-on.scc -------------------------------------------------------------------------------- /src/test/resources/stl/irt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/LICENSE -------------------------------------------------------------------------------- /src/test/resources/stl/irt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/NOTICE -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0056-001_modified.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0056-001_modified.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0061-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0061-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0061-004_modified.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0061-004_modified.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0062-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0062-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0062-002_modified.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0062-002_modified.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0067-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0067-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0068-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0068-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0069-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0069-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0071-002.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0071-002.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0074-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0074-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-002.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-002.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-003.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-003.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-004.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-004.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-005.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-005.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-006.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-006.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-007.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-007.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-008.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-008.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0076-009.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0076-009.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0077-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0077-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0077-002.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0077-002.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0086-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0086-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0087-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0087-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-002.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-002.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-003.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-003.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-004.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-004.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-005.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-005.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-006.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-006.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-007.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-007.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-008.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-008.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0090-009.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0090-009.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-001.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-001.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-002.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-002.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-003.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-003.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-004.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-004.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-005.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-005.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-006.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-006.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-007.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-007.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-008.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-008.stl -------------------------------------------------------------------------------- /src/test/resources/stl/irt/requirement-0091-009.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/irt/requirement-0091-009.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/br_new_colors.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/br_new_colors.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/br_same_colors.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/br_same_colors.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/br_style_reset.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/br_style_reset.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/cumulative_set.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/cumulative_set.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/multi_tti_subtitle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/multi_tti_subtitle.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/setting_background_before_startbox.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/setting_background_before_startbox.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/test_tcp_processing.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/test_tcp_processing.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/vp18_3_lines.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/vp18_3_lines.stl -------------------------------------------------------------------------------- /src/test/resources/stl/sandflow/vp20_2_newlines.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/stl/sandflow/vp20_2_newlines.stl -------------------------------------------------------------------------------- /src/test/resources/ttml/body_only.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/ttml/body_only.ttml -------------------------------------------------------------------------------- /src/test/resources/ttml/lwsp_default.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/ttml/lwsp_default.ttml -------------------------------------------------------------------------------- /src/test/resources/ttml/lwsp_preserve.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/ttml/lwsp_preserve.ttml -------------------------------------------------------------------------------- /src/test/resources/ttml/referential_styling.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/ttml/referential_styling.ttml -------------------------------------------------------------------------------- /src/test/resources/vtt/alignment.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/alignment.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/font.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/font.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/position.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/position.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/style.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/style.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/LICENSE.md -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/README.txt: -------------------------------------------------------------------------------- 1 | Retrieved from https://github.com/web-platform-tests/wpt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/arrows.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/arrows.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/comment-in-cue-text.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/comment-in-cue-text.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/header-garbage.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/header-garbage.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/header-regions.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/header-regions.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/header-space.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/header-space.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/header-tab.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/header-tab.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/header-timings.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/header-timings.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/ids.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/ids.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/newlines.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/newlines.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/nulls.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/nulls.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-edge-case.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-edge-case.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-id.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-id.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-lines.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-lines.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-old.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-old.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-regionanchor.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-regionanchor.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-scroll.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-scroll.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/regions-viewportanchor.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/regions-viewportanchor.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-align.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-align.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-line.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-line.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-multiple.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-multiple.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-position.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-position.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-region.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-region.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-size.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-size.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/settings-vertical.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/settings-vertical.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-bom.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT 2 | -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-no-newline.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-space-no-newline.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-space.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT 2 | -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-tab-no-newline.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-tab.vtt: -------------------------------------------------------------------------------- 1 | WEBVTT 2 | -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/signature-timings.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/signature-timings.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/stylesheets.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/stylesheets.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-60.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-60.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-eof.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-eof.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-garbage.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-garbage.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-negative.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-negative.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-omitted-hours.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-omitted-hours.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-too-long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-too-long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/timings-too-short.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/timings-too-short.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/file-parsing/whitespace-chars.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/file-parsing/whitespace-chars.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/2_cues_overlapping_completely_move_up.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/2_cues_overlapping_completely_move_up.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/2_cues_overlapping_partially_move_down.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/2_cues_overlapping_partially_move_down.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/2_cues_overlapping_partially_move_up.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/2_cues_overlapping_partially_move_up.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center_position_50.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center_position_50.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center_position_gt_50.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center_position_gt_50.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center_position_gt_50_size_gt_maximum_size.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center_position_gt_50_size_gt_maximum_size.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center_position_lt_50.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center_position_lt_50.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_center_position_lt_50_size_gt_maximum_size.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_center_position_lt_50_size_gt_maximum_size.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_end.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_end.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_end_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_end_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_start.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_start.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/align_start_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/align_start_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bidi_ruby.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bidi_ruby.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bidi_text-combine-upright.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bidi_text-combine-upright.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bidi_vertical_lr.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bidi_vertical_lr.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bidi_vertical_rl-oneline.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bidi_vertical_rl-oneline.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bidi_vertical_rl.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bidi_vertical_rl.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bold_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bold_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bold_with_2_timestamps.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bold_with_2_timestamps.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/bold_with_timestamp.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/bold_with_timestamp.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/class_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/class_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/class_text-combine-upright.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/class_text-combine-upright.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/class_with_2_timestamps.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/class_with_2_timestamps.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/class_with_timestamp.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/class_with_timestamp.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/cue_with_id.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/cue_with_id.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/decode_escaped_entities.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/decode_escaped_entities.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_cascade_priority.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_cascade_priority.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_cascade_priority_layer.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_cascade_priority_layer.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_imports_blocked.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_imports_blocked.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_invalid_format.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_invalid_format.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_media_queries.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_media_queries.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_multiple_tracks1.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_multiple_tracks1.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_multiple_tracks2.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_multiple_tracks2.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_selectors.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_selectors.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_urls.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_urls.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/embedded_style_without_style.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/embedded_style_without_style.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/foo.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/foo.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/foo_c_bar.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/foo_c_bar.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/foo_space_space_bar_LF_baz.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/foo_space_space_bar_LF_baz.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/italic_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/italic_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/italic_with_2_timestamps.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/italic_with_2_timestamps.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/italic_with_timestamp.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/italic_with_timestamp.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_-2_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_-2_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_0.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_0.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_1_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_1_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_50_percent.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_50_percent.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_integer_and_percent_overlap.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_integer_and_percent_overlap.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_integer_and_percent_overlap_move_up.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_integer_and_percent_overlap_move_up.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_percent_and_integer_overlap.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_percent_and_integer_overlap.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/line_percent_and_integer_overlap_move_up.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/line_percent_and_integer_overlap_move_up.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/one_line_cue_plus_wrapped_cue.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/one_line_cue_plus_wrapped_cue.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/size_50.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/size_50.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/snap-to-line.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/snap-to-line.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/start_alignment.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/start_alignment.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_bold.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_bold.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_bold_with_class.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_bold_with_class.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_class.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_class.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_class_with_class.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_class_with_class.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_italic.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_italic.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_italic_with_class.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_italic_with_class.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_two_voices.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_two_voices.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_underline.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_underline.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_underline_with_class.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_underline_with_class.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_voice.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_voice.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/test_voice_with_class.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/test_voice_with_class.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/too_many_cues.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/too_many_cues.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/too_many_cues_wrapped.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/too_many_cues_wrapped.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u002E_LF_u05D0.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u002E_LF_u05D0.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u002E_u2028_u05D0.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u002E_u2028_u05D0.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u002E_u2029_u05D0.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u002E_u2029_u05D0.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u0041_first.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u0041_first.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u05D0_first.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u05D0_first.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u0628_first.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u0628_first.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/u06E9_no_strong_dir.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/u06E9_no_strong_dir.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/underline_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/underline_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/underline_with_2_timestamps.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/underline_with_2_timestamps.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/underline_with_timestamp.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/underline_with_timestamp.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/very_long_cue.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/very_long_cue.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/voice_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/voice_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/voice_with_2_timestamps.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/voice_with_2_timestamps.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/voice_with_timestamp.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/voice_with_timestamp.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/white-spaces.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/white-spaces.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/white-spaces_long.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/white-spaces_long.vtt -------------------------------------------------------------------------------- /src/test/resources/vtt/wpt-tests/rendering/white-spaces_long_size_20.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandflow/ttconv/HEAD/src/test/resources/vtt/wpt-tests/rendering/white-spaces_long_size_20.vtt --------------------------------------------------------------------------------