Hacker News new | ask | show | jobs
by maherbeg 4336 days ago
You can actually stream the file directly to the chromecast as it's transcoding.

I've got this working in my own chromecast app mkvcast: https://github.com/maherbeg/mkvcast

See https://github.com/maherbeg/mkvcast/blob/master/lib/controll... for the parameters to use.

2 comments

I got something similar working in Java by simply exec'ing ffmpeg and getting a handle on the stream. Not being able to seek kind of sucks, and Chromecast does not like infinite streams. However, I've seen that he Chromecast will actually stream some MKVs just fine (so long as the underlying codecs are supported).
Thanks for the reference! This looks like just what I need.