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

Add Quicktime configuration guide to the wiki #2295

Closed
2 tasks done
SheinH opened this issue Feb 2, 2019 · 2 comments
Closed
2 tasks done

Add Quicktime configuration guide to the wiki #2295

SheinH opened this issue Feb 2, 2019 · 2 comments
Labels

Comments

@SheinH
Copy link

SheinH commented Feb 2, 2019

Issue

  • This is not a bug report, feature request, or plugin issue/request.
  • I have read the contribution guidelines.

The wiki currently states that quicktime does not work but I've gotten it to work using this .streamlinkrc:

player=/usr/bin/open
player-args=-W -n -a 'Quicktime Player' {filename}
player-passthrough=hls

Works by passing the hls stream as an m3u8 file and then using 'open' on the file with the application parameter set to Quicktime. I think this would be useful info for the wiki.

Additional comments, screenshots, etc.

image
image

Love Streamlink? Please consider supporting our collective. Thanks!

@bastimeyer
Copy link
Member

bastimeyer commented Feb 2, 2019

Similar to these questions:
streamlink/streamlink-twitch-gui#511
#1338 (comment)

player-passthrough=hls

By using the player-passthrough=hls parameter, you are bypassing Streamlink and instead passing through the HLS stream URL to the player and using it as its first launch parameter. This means that the Player will do all the downloading and buffering on its own. Streamlink won't do anything and will just wait until the player gets closed. It's the same as running this:

# launching the player executable directly
/path/to/player "$(streamlink --stream-url URL QUALITY)"
# or macOS specific app launcher
open --wait-apps --new -a "Some Player.app" --args "$(streamlink --stream-url URL QUALITY)"

Quicktime Player doesn't support reading from stdin, which makes it useless in combination with Streamlink (the regular way).

@gravyboat
Copy link
Member

@bastimeyer has been kind enough to explain why Quicktime doesn't support Streamlink so I'm going to close this as there isn't anything for us to document in relation to Streamlink itself.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants