• 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 14
[REQUEST] TuneIn Radio Plugin?
#76
Is there a way to get info for what song is on each station?
Reply
#77
Thank you for this great add-on.

I updated the translation into Spanish language.

Changes:
Untranslated strings translated.
Fixed minor misspellings.
General update.

1.- .../language/Spanish/strings.xml

Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<strings>    
    <!--Labels-->
    <string id="1000">Favoritos</string>
    <string id="1001">Recientes</string>
    <string id="1002">Explorar</string>
    <string id="1003">Buscar</string>
    <string id="1004">Añadir a favoritos</string>
    <string id="1005">Quitar de favoritos</string>
    <string id="1006">URL personalizada</string>
    <string id="1009">Añadir a favoritos</string>
    <string id="1010">Quitar de favoritos</string>
    <string id="1011">Recargar</string>
    <string id="1012">Subir puesto</string>
    <string id="1013">Bajar puesto</string>
    <string id="1014">Descargar emisión</string>
    <string id="1015">Descargas</string>
    <string id="1016">Eliminar descarga</string>
    <string id="1017">Eliminar URL personalizada</string>
    <string id="1018">Añadir a favoritos de Kodi</string>

    <!--Settings-->
    <string id="2000">Nombre de usuario</string>
    <string id="2001">Contraseña</string>
    <string id="2003">Nivel de depuración de errores</string>
    <string id="2004">Ninguno</string>
    <string id="2005">Bajo</string>
    <string id="2006">Medio</string>
    <string id="2007">Alto</string>
    <string id="2008">Color de los iconos</string>
    <string id="2009">Blanco</string>
    <string id="2010">Negro</string>
    <string id="2011">Número de emisiones recientes</string>
    <string id="2012">Preguntar cuando se cambie de emisión</string>
    <string id="2013">HTTPS</string>
    <string id="2014">Ruta de descargas</string>
    <string id="2015">Mostrar emisoras destacadas de TuneIn</string>
    <string id="2016">Mostrar emisoras locales de TuneIn</string>
    <string id="2017">Mostrar fanart</string>
    <string id="2018">Descargar en segundo plano</string>
    <string id="2019">AAC/AAC+</string>
    <string id="2024">AM (Broadcast)</string>
    <string id="2025">DAB (Broadcast)</string>
    <string id="2026">FM (Broadcast)</string>
    <string id="2027">HD (Broadcast)</string>
    <string id="2028">Página Web HTML</string>
    <string id="2020">MP3</string>
    <string id="2021">OGG</string>
    <string id="2029">QuickTime</string>
    <string id="2022">RealMedia</string>
    <string id="2030">RTMP Flash</string>
    <string id="2031">Satelite (Broadcast)</string>
    <string id="2023">Windows Media</string>
    <string id="2032">Windows Media Professional</string>
    <string id="2033">Windows Media Video</string>
    <string id="2034">Windows Media Voice</string>
    <string id="2035">Habilitar descargas</string>
    <string id="2036">Actualizar caché cada (en horas)</string>
    <string id="2037">Latitud/longitud</string>
    <string id="2038">Idioma</string>
    <string id="2039">Rojo</string>
    <string id="2040">Mostrar solo favoritos de TuneIn</string>
    
    <!-- Settings Titles -->
    <string id="2050">TuneIn</string>
    <string id="2051">Apariencia</string>
    <string id="2052">Descargas</string>
    <string id="2053">Formatos</string>
    <string id="2054">Avanzado</string>
    
    <!--Dialogs-->
    <string id="3000">Escriba el nombre de la emisora, programa y/o artista</string>
    <string id="3001">Se precisa tener una cuenta en TuneIn pra realizar esta acción</string>
    <string id="3002">Visite tunein.com para registrarse gratuitamente</string>
    <string id="3003">No ha sido posible autentificar la cuenta</string>
    <string id="3004">Compruebe que el usuario y la contraseña son correctos</string>
    <string id="3005">¿Desea reproducir la trasmisión?</string>
    <string id="3006">Escriba la URL personalizada</string>
    <string id="3007">'%s' ya existe en TuneIn</string>
    <string id="3008">¿Desea añadirla a sus emisiones favoritas?</string>
    <string id="3009">Error de red</string>
    <string id="3010">Vea kodi.log para más información</string>
    <string id="3011">Error de TuneIn Radio</string>
    <string id="3012">Esta trasmisión no existe en TuneIn</string>
    <string id="3013">¿Desea añadirla a sus favoritas como URL personalizada?</string>
    <string id="3014">Escriba un nombre para la URL personalizada</string>
    <string id="3015">Falló la descarga de la emisión</string>
    <string id="3016">No se encuentra la URL de descarga de la emisión; en su lugar pruebe a reproducirla</string>
    <string id="3017">No ha sido posible añadir la emisora a favoritos de Kodi</string>
    
    <!--Download Dialogs-->
    <string id="4000">TuneIn Radio</string>
    <string id="4001">Iniciando la descarga del archivo</string>
    <string id="4002">Descargados %d de %d bytes</string>
    <string id="4003">El archivo %s ya existe</string>
    <string id="4004">%s se ha descargado correctamente</string>
    <string id="4005">Falló la descarga del archivo %s</string>
    <string id="4006">¿Desea sobrescribir el archivo?</string>
</strings>

2.- .../plugin.audio.tuneinradio/addon.xml
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.audio.tuneinradio" name="TuneIn Radio" version="3.0.2" provider-name="brianhornsby">
    <requires>
        <import addon="xbmc.python" version="2.1.0"/>
        <import addon="script.module.simplejson" version="2.0.10"/>
    </requires>
    <extension point="xbmc.python.pluginsource" library="default.py">
        <provides>audio</provides>
    </extension>
    <extension point="xbmc.addon.metadata">
        <platform>all</platform>
        <summary lang="bg">Радио TuneIn</summary>
        <summary lang="en">TuneIn Radio</summary>
        <summary lang="es">TuneIn Radio</summary>
        <description lang="bg">Радио TuneIn е безплатна услуга, която ви позволява да слушате всичко, независимо къде се намирате. Каквото желаете - музика, спорт или новини. Радио TuneIn предлага над 50 000 станции от които да избирате. Можете да намерите местните станции или да откриете нови станции от целия свят. Радио TuneIn ви отвежда точно където желаете да сте.</description>
        <description lang="en">TuneIn Radio is a free service that lets you listen to anything in the world from wherever you are. Whether you want to hear music, sports, news or current events. TuneIn Radio offers over 50,000 stations for you to choose from. From finding local stations to discovering new stations from around the world, TuneIn Radio brings you to where you want to be.</description>
        <description lang="es">TuneIn Radio es un servicio gratuito que le permite escuchar cualquier cosa, de cualquier parte del mundo y desde donde quiera que usted se encuentre. Tanto si desea escuchar música, deportes, noticias o los últimos acontecimientos. TuneIn Radio le ofrece más de 50.000 emisoras entre las que elegir. Desde emisoras locales hasta las nuevas emisoras que aparecen por todo el mundo. TuneIn Radio le lleva allí donde quiera estar.</description>
        <language></language>
        <license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
        <forum>http://forum.kodi.tv/showthread.php?tid=119315</forum>
        <website>http://brianhornsby.com/kodi_addons/tuneinradio</website>
        <source>https://github.com/brianhornsby/plugin.audio.tuneinradio</source>
    </extension>
</addon>

https://github.com/brianhornsby/plugin.a...l/99/files

Regards.
Reply
#78
Hi brian, some news about possibility of recording ?

Greetigs
A.
Reply
#79
(2016-08-29, 17:03)Alesardus Wrote: Hi brian, some news about possibility of recording ?

Greetigs
A.

I have managed to 'record' from tune-in radio streams using NapoleonWilson's excellent repository. Link here:

https://github.com/NapoleonWils0n/kodi-p...orefactory

Forum:

http://forum.kodi.tv/showthread.php?tid=216111

It's mainly aimed at recording video streams (which is really useful in itself) but with a minor tweak you can make it work for audio streams as well.
Reply
#80
Hi,

Is it possible to add a station to any of my TuneIn favourite lists? I can see two "add to fav" item in the context menu of stations however both of them add the station ot Kodi favourites list and not to the addon list.
Reply
#81
you can use a workaround and add favs using desktop browser and logged into Tune In, or using app on a phone
Reply
#82
my TuneIn addon not working suddenly since 1 month, I am desperate to solve this. Currently I cannot login to my TuneIn account, cannot load my favorite stations.
"RECENT" only allow me 5 streams.
kodi error message says need to check xbmc.log, but how and where? 
It was working fine a month ago!

Does anyone know if anything changed from TuneIn side? (banned?) or addon need update?

thanks for any hints.
Kodi 20.4(Nexus) / FireTV 4K
Reply
#83
Music 
(2017-12-11, 12:04)stein Wrote: my TuneIn addon not working suddenly since 1 month, I am desperate to solve this. Currently I cannot login to my TuneIn account, cannot load my favorite stations.
"RECENT" only allow me 5 streams.
kodi error message says need to check xbmc.log, but how and where? 
It was working fine a month ago!

Does anyone know if anything changed from TuneIn side? (banned?) or addon need update?

thanks for any hints.

I have the same problem and haven't been able to find a solution yet either.
Reply
#84
(2017-12-11, 12:04)stein Wrote: my TuneIn addon not working suddenly since 1 month, I am desperate to solve this. Currently I cannot login to my TuneIn account, cannot load my favorite stations.
"RECENT" only allow me 5 streams.
kodi error message says need to check xbmc.log, but how and where? 
It was working fine a month ago!

Does anyone know if anything changed from TuneIn side? (banned?) or addon need update?

thanks for any hints.
My partner id seems to have been revoked. To fix the issue you can manually update default.py to use 'HyzqumNX'.
https://github.com/brianhornsby/plugin.a...issues/113

FYI you can increase the number of recents saved by setting the number you want in the plugin settings Appearance tab.
Reply
#85
Will you be pushing an update with the required change to the default.py @brianhornsby or do we need to do it manually across all of our devices?

Or do we need to register for our own Partner ID (is this even possible?) to solve this long term?

THANKS Smile
If I have helped you or increased your knowledge please click the 'Thumb Up - Like' button to show me your appreciation :)
For YouTube questions see the official thread here.
Reply
#86
(2017-12-12, 03:56)brianhornsby Wrote:
(2017-12-11, 12:04)stein Wrote: my TuneIn addon not working suddenly since 1 month, I am desperate to solve this. Currently I cannot login to my TuneIn account, cannot load my favorite stations.
"RECENT" only allow me 5 streams.
kodi error message says need to check xbmc.log, but how and where? 
It was working fine a month ago!

Does anyone know if anything changed from TuneIn side? (banned?) or addon need update?

thanks for any hints.
My partner id seems to have been revoked. To fix the issue you can manually update default.py to use 'HyzqumNX'.
https://github.com/brianhornsby/plugin.a...issues/113

FYI you can increase the number of recents saved by setting the number you want in the plugin settings Appearance tab.   
 Thanks for your reply Brian, I have been looking, but can't seem to find the default.py?  Blush Where can I find it? I use Kodi on Windows 10.
Reply
#87
Kodi > addons > plugin.audio.tuneinradio > default.py (line 643, or search for 'partnerid')
If I have helped you or increased your knowledge please click the 'Thumb Up - Like' button to show me your appreciation :)
For YouTube questions see the official thread here.
Reply
#88
(2017-12-12, 12:21)jmh2002 Wrote: Kodi > addons > plugin.audio.tuneinradio > default.py (line 643, or search for 'partnerid')
 Thanks @jmh2002 but if I look at the list there are no files named like that, I included an image...
Image
Reply
#89
I found it! Its's C:\Users\user\AppData\Roaming\Kodi\addons\plugin.audio.tuneinradio

And it is working again! 

Thanks all!  Big Grin
Reply
#90
(2017-12-12, 03:56)brianhornsby Wrote:
(2017-12-11, 12:04)stein Wrote: my TuneIn addon not working suddenly since 1 month, I am desperate to solve this. Currently I cannot login to my TuneIn account, cannot load my favorite stations.
"RECENT" only allow me 5 streams.
kodi error message says need to check xbmc.log, but how and where? 
It was working fine a month ago!

Does anyone know if anything changed from TuneIn side? (banned?) or addon need update?

thanks for any hints.
My partner id seems to have been revoked. To fix the issue you can manually update default.py to use 'HyzqumNX'.
https://github.com/brianhornsby/plugin.a...issues/113

FYI you can increase the number of recents saved by setting the number you want in the plugin settings Appearance tab. 

Thanks Brian! it works now with the new PartnerID. I download tyhe github package and changed default.py and reinstalled it and works now. (yes I tried this re-zip and it is a new experience for me).
But related to "recent", number, it cannot be changed in "appearance" tab, I tried also chagne in the file of setting.xml, also not working still 5. Any further hints?

By the chance, I would like to thank you for developed this addon, it is always my friend while breakfast at weekend! If I could ask more, I wonder if the customer url can be assigned a icon. Because some streams are not in TuneIn or injected with too many ADs. Thus my own url, it would be perfect it still has my icon. Thanks Anyways !
Kodi 20.4(Nexus) / FireTV 4K
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 14

Logout Mark Read Team Forum Stats Members Help
[REQUEST] TuneIn Radio Plugin?3