-
Notifications
You must be signed in to change notification settings - Fork 8
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
Youtube support #12
Comments
@Boscop unless I'm misunderstanding, you generally don't have access to youtube videos for processing in the browser because they are wrapped in iframes. |
If you know the URL/ID of a youtube video, you can access its stream. |
Streaming in browser is not possible directly because video frames cannot be read from iframe. You could use the |
But it'd be possible with a CORS proxy to make it a CORS request, right? |
What you're describing might be doable in a proxy server, but as far as I know getting direct file URLs for youtube videos isn't entirely trivial. You would have to use youtube-dl or something similar (there's this) and doing so is against Youtube's ToS (if that matters to your project). Either way, you would be handling a regular video file at that point, which resl can already do. |
How can resl be used to postprocess a streaming youtube video?
The text was updated successfully, but these errors were encountered: