Posts: 2
Joined: Mar 2018
Reputation:
0
Hi guys,
Is there any plans to ever implement native chromecast into Kodi?
Been using Boxi (the last windows version before they shut down) for years, going straight from media computer into TVs HDMI.
Have now moved and can no longer do this, As Boxi stopped development prob around 10 years ago it obviously does not support Chromecast.
Ive basically been using Chromecast via Youtube, Netflix & Animelab to watch TV but have now got just got my computer back and have been looking for the most similar platform to Boxi to view all my local media from and Kodi ticks all the boxes, just that it doesn't have Chromecast built in.
I know Plex has Chromecast but i much prefer Kodi over Plex. I have been using Videostream currently, which works fine but lacks the menu interface ETC, if you just just implement Videostream into Kodi that would be amazing.
Basically is there any plan for Kodi to implement Chromecast or is there a simple way to add this function, and no i don't mean screen sharing i mean actually casting.
Thanks
Posts: 7,658
Joined: Jun 2011
Reputation:
288
as soon as an open source library for chromecast exists, kodi can implement it.
Posts: 394
Joined: Oct 2016
Reputation:
25
While it would be great to have Kodi as a Chromecast receiver (essentialy turning Kodi into a free chromecast dongle). In the meantime its probably easier to buy a real Chromecast which will work perfectly.
I'm not sure the value of having Kodi as a sender considering how easy it is to run Kodi on a RPi or Android TV, Xbox etc.
Posts: 10
Joined: Apr 2010
Reputation:
0
Any dev willing to take a look if this is possible?
The added value for me/my setup would be less wires and more flexibility.
Consider a setup with a TV, external speakers (no receiver!) and a projector that is across the room from all of the other equipment.
Adding "cast to" capabilities to Kodi allows me to:
- cast Kodi to TV only for reduced noise
- cast Kodi to TV + speakers (chromecast group)
- cast Kodi to Projector + speakers (chromecast group)
All this while leaving my setup easy to use if i just want to cast a youtube video from my phone.
Basically completely wireless solution without a need for switching equipment.
Posts: 91
Joined: Mar 2014
Reputation:
4
Bumping an old thread...
From pure a technical point of view, is it possible to establish a ffmpeg stream to a Chromecast device with for example pychromecast or similar?
Posts: 3
Joined: Mar 2021
Reputation:
0
Have there been any news regarding implementing Chromecast sender in Kodi?
Posts: 12,646
Joined: Oct 2014
Reputation:
631
No.
It's acknowledged as being something that would be nice, but no-one is working on it to my knowledge.
Posts: 1
Joined: Aug 2020
Reputation:
1
This has been a bugaboo of mine as well. It seems to me that support for Chromecast is eventually built into EVERY SINGLE VIDEO PLAYER in the world. Okay, I might be exaggerating a bit but it is true that nobody wants a video player that doesn't support it.
Regarding VideoStream, I too use it. It was my first go to tool. And it is not doing anything special that is not readily available to any and all users of the Chromecast APIs.
When I first researched Kodi as a tool, I found a little GitHub project called castnow. It is a javascript command line interface that can chromecast files. As a proof of concept, I modified the Kodi playercorefactory.xml file to execute a command line and run castnow in order to cast from within Kodi. It was wonky, but it worked, and from that I put a future project on my massive todo list to develop an addon that would link from Kodi.
This pychromecast library is something I just heard of, so I will be digging into that hole a bit to see what's what.
Incidentally, the playercorefactory is documented in their Wiki. The little test I ran looked like this:
<playercorefactory>
<players>
<player name="Castnow" type="ExternalPlayer" audio="false" video="true">
<filename>c:\Windows\system32\cmd.exe</filename>
<args>/k castnow "{1}" -address 192.168.0.10</args>
<hidexbmc>true</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
<player name="Castnow2" type="ExternalPlayer" audio="false" video="true">
<filename>c:\Windows\system32\cmd.exe</filename>
<args>/k castnow "{1}" -address 192.168.0.10</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
</player>
</players>
<rules action="prepend">
</rules>
</playercorefactory>