Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modifications for LIVE webvtt: option for explicit input format, and a less strict webvtt header check. #1027

Closed
wants to merge 30 commits into from

Conversation

Canta
Copy link
Contributor

@Canta Canta commented Feb 3, 2022

See #685 (comment) for details.

This should fix both #685 and #1017 .

Daniel Cantarín and others added 30 commits December 31, 2019 16:14
Also, added Daniel Cantarín to AUTHORS and CONTRIBUTORS files, as per @kqyang comment: shaka-project#702 (comment)
Testing rebase using github's web UI
Updating fork from master
…ject#939 :

   * Fixing a bug regarding "content length" and "file size" that was impeding normal HTTP operations. See issue comment 4.
   * Adding back the previously lost ability to change HTTP User Agent from command line parameter (mostly taken from termoose's code).
   * Changing the "HttpFile does not support Size()" message to VLOG(1) loglevel.
Merge google/master -> canta/master
Merge google/shaka-packager into canta/shaka-packager
…meter, and lowered WebVTT header check seriousness (from error to warning), both modifications for LIVE scenarios.
@Canta
Copy link
Contributor Author

Canta commented Feb 1, 2023

@joeyparrish
Hi there Mr. Parrish.
This PR was failing a year ago because of problems with the testing platform (during a migration period) and not with the code. I would like to re-trigger those tests without messing with the code, but I don't know how. Would you please take a look at it?

@cosmin
Copy link
Contributor

cosmin commented Feb 15, 2024

@Canta you will need to merge latest code from main into this branch to be able to pick up all the testing infrastructure fixes, or rebase the changes on top of main.

@Canta
Copy link
Contributor Author

Canta commented Feb 21, 2024

@cosmin Thank you very much for giving this issue some attention.
I'll cancel this PR, rebase my branch, and then send another PR with up-to-date code soon.
Will mention you again on that other PR, so you can take a look at it.

@Canta Canta closed this Feb 21, 2024
joeyparrish pushed a commit that referenced this pull request Feb 24, 2024
An updated version of PR #1027

That previous PR was done using 2021 code, and there were many changes
in the codebase from there, so a rebase was needed and also some minor
tweak here and there. But it's the same code, just reimplemented on a
newer codebase.

If you want to take a look at this in action, after building shaka
packager with this PR's code included, try this commands in 3 different
simultaneous bash sessions:

1. Video UDP input: `ffmpeg -f lavfi -re -i
"testsrc=s=320x240:r=30,format=yuv420p" -c:v h264 -sc_threshold 0 -g 30
-keyint_min 30 -r 30 -a53cc 1 -b:v 150k -preset ultrafast -r 30 -f
mpegts "udp://127.0.0.1:10000?pkt_size=1316"`
2. WebVTT UDP input: `for sec in $(seq 0 9999) ; do printf
"%02d:%02d.000 --> %02d:%02d.000\ntest second ${sec}\n\n" "$(( ${sec} /
60 ))" "$(( ${sec} % 60 ))" "$(( (${sec} + 1) / 60 ))" "$(( (${sec} + 1)
% 60 ))" ; sleep 1 ; done > /dev/udp/127.0.0.1/12345`
3. shaka packager command line: `timeout 60
path/to/build/packager/packager
'in=udp://127.0.0.1:10000?timeout=8000000,stream_selector=0,init_segment=240_init.m4s,segment_template=240_$Number%09d$.m4s,bandwidth=150000'
'in=udp://127.0.0.1:12345?timeout=8000000,stream_selector=0,input_format=webvtt,format=webvtt+mp4,init_segment=text_init.m4s,segment_template=text_$Number%09d$.m4s,language=eng,dash_roles=subtitle'
--mpd_output ./manifest.mpd --segment_duration 3.2
--suggested_presentation_delay 3.2 --min_buffer_time 3.2
--minimum_update_period 3.2 --time_shift_buffer_depth 60
--preserved_segments_outside_live_window 1 --default_language=eng
--dump_stream_info 2>&1`

Note the added `input_format=webvtt` to the shaka packager command's
second selector. That's new from this PR. If you don't use that, shaka's
format autodetection will not detect the webvtt format from the input,
as explained in
#685 (comment).
Try the command without it if you want to.

Fixes #685
Fixes #1017

---------

Co-authored-by: Daniel Cantarín <canta@canta.com.ar>
@github-actions github-actions bot added the status: archived Archived and locked; will not be updated label Apr 21, 2024
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Apr 21, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
status: archived Archived and locked; will not be updated
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants