If I use this to play music, will my computer still go to sleep and stop playback like when I use a brower-based music app?
Show HN: BigScreen sends pictures and music from OS X to ChromeCast
21–30 of 38 posts
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#22Try this for on the fly transcoding even unsupported media: https://github.com/mustafaakin/cast-localvideo Disclaimer: I made this, but people seems happy using it.
Or use Plex or XBMC and control it from your smartphone
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#23Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#24Why are there recent Macs without HDMI ports? You'd think that would be ubiquitous by now.
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#25Earlier quoted context omitted.
Thanks. Will reach out once I get a chance: the video transcoding/streaming will be the real heavy lifting. This was mostly just a node-webkit exercise, but not sure how cleanly it will merge with the Chrome code you linked to.
The transcoding isn't actually too bad. You basically just need ffmpeg compiled from source on your box, and you can use https://github.com/fluent-ffmpeg/node-fluent-ffmpeg . You just need to transcode everything go h264 / AAC (so make sure you compile with libfdk_aac ). The thing I have been unable to figure out so far is how to start streaming to chromecast before the transcoding is complete. It will play to the po…
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.
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#26Why are there recent Macs without HDMI ports? You'd think that would be ubiquitous by now.
Mini-Displayport to HDMI / DVI / VGA adapters are less than $10.
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#27Earlier quoted context omitted.
The transcoding isn't actually too bad. You basically just need ffmpeg compiled from source on your box, and you can use https://github.com/fluent-ffmpeg/node-fluent-ffmpeg . You just need to transcode everything go h264 / AAC (so make sure you compile with libfdk_aac ). The thing I have been unable to figure out so far is how to start streaming to chromecast before the transcoding is complete. It will play to the po…
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.
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#28Earlier quoted context omitted.
Thanks. Will reach out once I get a chance: the video transcoding/streaming will be the real heavy lifting. This was mostly just a node-webkit exercise, but not sure how cleanly it will merge with the Chrome code you linked to.
The transcoding isn't actually too bad. You basically just need ffmpeg compiled from source on your box, and you can use https://github.com/fluent-ffmpeg/node-fluent-ffmpeg . You just need to transcode everything go h264 / AAC (so make sure you compile with libfdk_aac ). The thing I have been unable to figure out so far is how to start streaming to chromecast before the transcoding is complete. It will play to the po…
Re: Show HN: BigScreen sends pictures and music from OS X to ChromeCast
#29Why are there recent Macs without HDMI ports? You'd think that would be ubiquitous by now.