Kodi Community Forum
Android XBMC with Diceplayer demo - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93)
+--- Thread: Android XBMC with Diceplayer demo (/showthread.php?tid=138464)

Pages: 1 2 3 4 5 6 7


XBMC with Diceplayer demo - juami - 2012-08-17

I'm a developer of diceplayer ( android hw accelerated media player )
I am working to add external player features to XBMC android.
It works on my SGS3 and Telechips Android TV box.

Local file / SMB share / HTTP remote play(I've tested with Vimeo HD) works well.
I'll release patch for XBMC and Diceplayer soon.



EDIT : you can use sub $50 cheap android tv stick that have TCC8925.


RE: XBMC with Diceplayer demo - Ned Scott - 2012-08-17

Very awesome!


RE: XBMC with Diceplayer demo - spiff - 2012-08-17

just remember that xbmc is GPL. (i don't know how you launch your player but i cannot find the source for it).


RE: XBMC with Diceplayer demo - juami - 2012-08-17

(2012-08-17, 13:35)spiff Wrote: just remember that xbmc is GPL. (i don't know how you launch your player but i cannot find the source for it).
Diceplayer is separate process. It is not affected by GPL.
Windows/Linux XBMC can launch external player app which is not GPL.
I just add some code for launching external android player app to XBMC.




RE: XBMC with Diceplayer demo - jamiejones85 - 2012-08-17

Do you use the android method of launching applications using an intent? So this would work with any player that can handle the intent?

e.g.
Code:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(movieurl))



RE: XBMC with Diceplayer demo - davilla - 2012-08-17

until we see the source code patch... It's vapor Smile


RE: XBMC with Diceplayer demo - spiff - 2012-08-17

(2012-08-17, 14:22)juami Wrote:
(2012-08-17, 13:35)spiff Wrote: just remember that xbmc is GPL. (i don't know how you launch your player but i cannot find the source for it).
Diceplayer is separate process. It is not affected by GPL.
Windows/Linux XBMC can launch external player app which is not GPL.
I just add some code for launching external android player app to XBMC.

then it is fine.as I said I don't have the code.


RE: XBMC with Diceplayer demo - Nu7s - 2012-08-18

Great, just what I was looking for! Smile


RE: XBMC with Diceplayer demo - jompan87 - 2012-08-19

I hope to see this patch get merged in soon, a great addition and a must for android users Smile

PS: @Juami: are you makeing this player independet or targeting only diceplayer?


RE: XBMC with Diceplayer demo - davilla - 2012-08-19

@jompan87, as we keep asking. What patch ?


RE: XBMC with Diceplayer demo - Ned Scott - 2012-08-19

Let's not scare away our new Android friend..


RE: XBMC with Diceplayer demo - davilla - 2012-08-19

I like my crow well done if proven wrong Smile HAHAHAHA


RE: XBMC with Diceplayer demo - juami - 2012-08-19


It is just vapor. Forget it.


RE: XBMC with Diceplayer demo - juami - 2012-08-19

(2012-08-19, 00:04)jompan87 Wrote: I hope to see this patch get merged in soon, a great addition and a must for android users Smile

PS: @Juami: are you makeing this player independet or targeting only diceplayer?

It is basically generic. But some features are dependent on diceplayer like smb suppory.

(2012-08-17, 15:33)jamiejones85 Wrote: Do you use the android method of launching applications using an intent? So this would work with any player that can handle the intent?

e.g.
Code:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(movieurl))

Yes. I send intent which have path as Uri.



RE: XBMC with Diceplayer demo - jompan87 - 2012-08-19

alright, sounds good :-)

any eta perhaps?