-
Notifications
You must be signed in to change notification settings - Fork 48
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
ABR without FFMPG #30
Comments
Hi @jsunintel, could provide instruction to use FFMPEG plugin on Windows for svt vp9? |
@japettyjohn I'm not sure that the FFMPEG plugin works for any platform, to be clear :). |
@colleenkhenry That makes sense given even the dockers files explicitly omit SVT-VP9 (even though they might indicate otherwise). FFMPEG is not a requirement - but 2-pass for ABR and thus MPEG-DASH is what I'm trying to handle. |
Maybe try using bounded bitrate constant quality for now?
…On Mon, May 27, 2019, 5:06 PM James Pettyjohn ***@***.***> wrote:
@colleenkhenry <https://github.com/colleenkhenry> That makes sense given
even the dockers files explicitly omit SVT-VP9 (even though they might
indicate otherwise).
FFMPEG is not a requirement - but 2-pass for ABR and thus MPEG-DASH is
what I'm trying to handle.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#30?email_source=notifications&email_token=AATVS2KTN4QD653QUV4SNJLPXRZO5A5CNFSM4HMSMHCKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODWKUZGA#issuecomment-496323736>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AATVS2KZCTBQIEIMWQIIJ7LPXRZO5ANCNFSM4HMSMHCA>
.
|
@japettyjohn Do you have a use case for 2pass+dash? |
DASH is also used for VOD in order to achieve ABR. |
And you're doing 2 pass video->Dash on FFMPEG right now? |
I just reviewed this and some months ago dropped the VBR 2 pass approach for CRF which does not need 2 pass. I am doing this with FFMPEG and then producing the DASH output using the Shaka packager. |
2 pass is a process where the system approximates all the information and stores the compressability, motion and other parts of the video into a log during the first pass. For streaming video this is usually not ideal since the user would need to wait for the 1st pass before even getting to see the first frame of the video. |
I'm trying to do ABR with MPEGDASH using SVT-VP9 and normally I'd be using FFMPEG with 2-pass but the encoder I'm using is Windows based and the FFMPEG plugin is not done for windows.
Are there particular settings I should use so I can get usable output for use with ABR?
The text was updated successfully, but these errors were encountered: