similar to: Stagefright mediaplayer in Android

Displaying 20 results from an estimated 200 matches similar to: "Stagefright mediaplayer in Android"

2015 Sep 29
2
Delay playing some streams on Android
2015 Sep 30
0
Delay playing some streams on Android
I suppose you were pointing me towards the "burst-size" setting, but it's not totally clear. Please correct me if you meant something else. I increased the burst-size to 131072 bytes, or 128 kibibytes. My Android app now plays the stream without much delay. I still don't know why I didn't notice this problem in an Android emulator. Thanks for the pointer. From:
2013 Jul 24
2
IceCast Android MediaPlayer support
Hello. What is the official info about IceCast Android MediaPlayer support?
2023 Nov 22
1
mediaplayer for icecast streams?
Hi Hope this is not too off-topic here. I want to implement a simple mediaplayer on my website where people can listen to my radio stream. I like simple, and the HTML <audio>-tag seems to work fine, so this is perfect for me.? But I would like to show the title of the current song playing. Is there some simple javascript or php I can use, to get this information? Or maybe a simple
2001 Mar 01
1
Windows mediaplayer under wine.
Has anybody managed to get windows mediaplayer running under wine? I've tried several times with mediaplayer 6.4, but it seems like it won't install. It extracts the files correctly but then just hangs there doing nothing. -- Lasse Melsaeter <lasse.melsaeter@nooffice.com> Systemsdeveloper NoOffice Internatioonal AS <http://www.nooffice.com/> - BOFH excuse #265: The mouse
2013 Jul 24
2
IceCast Android MediaPlayer support
Thanks. In http://developer.android.com/about/versions/android-2.2-highlights.html- there is a support for HTTP progressive streaming. Does this mean that IceCast is only Android-ready from 2.2? I've tried some hours ago on Android 2.1 tablet and the app crashes at start (couldn't find the reason yet). The same app works in 2.3.5. Thanks, I can extract tags by IcyStreamMeta class. Is there
2023 Nov 22
1
mediaplayer for icecast streams?
Icecast provides an endpoint (/status-json.xsl) which returns JSON with various data, including "Now Playing". Here is a link to the documentation: https://www.icecast.org/docs/icecast-trunk/server_stats/ In your case it looks like it would be http://radio.protestbandet.dk:8000/status-json.xsl Ben Weddle -----Original Message----- From: Icecast <icecast-bounces at xiph.org> On
2023 Nov 22
1
mediaplayer for icecast streams?
Thank you, Ben! I was afraid it would be very complicated to get the information extracted, but it was very simple. My only problem now is to find a way to update the text on the webpage. I was hoping sleep(5) could do the trick, but it does not work. <?php if (1) { $jsonobj=file("http://radio.protestbandet.dk:8000/status-json.xsl"); //var_dump($jsonobj);
2023 Nov 22
1
mediaplayer for icecast streams?
you can pull it with jQuery via javascript for example evry 10 seconds, and update the informations you want, at least its the way i do it. Am 23.11.2023 um 00:13 schrieb Thomas Jensen: > Thank you, Ben! > > I was afraid it would be very complicated to get the information > extracted, but it was very simple. My only problem now is to find a way > to update the text on the
2023 Nov 23
1
mediaplayer for icecast streams?
Here's an example with vanilla JS (attached). I had a test file lying around and swapped your info in. You can change setInterval() to fetch as often as you like (1000 = 1 second). Ben Weddle -----Original Message----- From: Icecast <icecast-bounces at xiph.org> On Behalf Of Railgun Sent: Wednesday, November 22, 2023 5:49 PM To: icecast at xiph.org Subject: Re: [Icecast] mediaplayer
2023 Nov 23
1
mediaplayer for icecast streams?
tor, 23 11 2023 kl. 00:14 +0000, skrev Weddle, Ben (Library): > > Here's an example with vanilla JS (attached). I had a test file > > lying > > around and swapped your info in. You can change setInterval() to > > fetch as often as you like (1000 = 1 second). Thank you VERY much! It would have taken me days, if not weeks, to come up with that solution. I haven't
2006 Feb 07
5
Re: ices0.4: icecast mp3 stream for source ?
thank you, for your fast answer. my problem with ogg is, that the mediaplayer don?t understand it. a lot of users are using ms mediaplayer unfortunately. greets Geoff Shang schrieb: > Carsten Henkel wrote: > >> we would like to use IceCast 2.3.1 as a mp3 streamer source for >> reencoding several sources of ices 0.4. >> >> It is working perfectly already by using
2014 Jun 20
4
Android Java source for icecast streaming
Greetings, tl;dr - I'm looking for sources to an Android Icecast client written in Java. long summary: I maintain an open source Android app (WREK Online) that plays the live mp3 stream from the station's Icecast server. Using the built in MediaPlayer class that is part of the Android SDK works OK. As a developer, I just give it the streaming URL of the Icecast server, hook up a few
2007 Jun 08
1
DO NOT REPLY [Bug 4684] New: rsync corrupts when coping to a USB memory stick
https://bugzilla.samba.org/show_bug.cgi?id=4684 Summary: rsync corrupts when coping to a USB memory stick Product: rsync Version: 2.6.9 Platform: x86 OS/Version: Linux Status: NEW Severity: critical Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy:
2018 Nov 06
5
Installing IceCast2 on CentOS 6 / CPanel
Was hoping to get some updated instructions for this. Have access to a dedicated server. The info on the web seems to be outdated.....some of the links are DOA..... There was one simple install, but not sure if it would work: This tutorial explains how to install icecast kh10 server on centos 6 server # cd /usr/src # wget
2009 Jun 15
2
Strange results encoding with latest ffmpeg2theora-0.24 and playback on Directshow through Winamp
Hi Folks, First, I would like to thank the eople in development who are doing so much to develope these great video and audio tools. I use Ogg Vorbis to store most of my music projects in studio and the results are stunning. Quite frankly, in the audio file reduction game, nothing beats Ogg Vorbis and I can personally say this from my own experience. So a huge thank you to the team. I've
2014 Jun 20
1
Android Java source for icecast streaming
Thank you. That's a nice looking radio app. On that link below, I only see links to download pre-compiled APK files (apps). Are there links to the actual source code available? Date: Fri, 20 Jun 2014 10:36:58 +0200 From: sardylan at gmail.com To: icecast-dev at xiph.org Subject: Re: [Icecast-dev] Android Java source for icecast streaming Hi jSelbie, try to have a look to
2014 Jun 20
0
Android Java source for icecast streaming
Rewriting everything is not necessary. I have a working solution for metadata extraction, that still relies on MediaPlayer, I can license it for a fair price. I am using it here: http://radiofonia.net/android Marcin 20 cze 2014 06:59 "John Selbie" <jselbie at hotmail.com> napisa?(a): > Greetings, > > tl;dr - I'm looking for sources to an Android Icecast client
2015 Sep 29
1
Delay playing some streams on Android
I'm writing an Android app to play streams. ?I use the standard Android "MediaPlayer" library to play streams. ?I've noticed that some streams start playing without much delay (MPR), but others take quite a while to start (WFMU). ?The only thing changing in my code is the URI of the Icecast mountpoint. ?My test device is a Nexus 5 running Android 5.1.1.
2007 Nov 29
5
Dynamic JS or RJS ?
Hi, while I search the net for hints I leave this here, probably you will be faster than me finding an answer. The next: I have a static site where I embed a player using an external js The html: <script type="text/javascript" src="http://www.mysite.com/scripts/player.js"></script> The JS: if(navigator.userAgent.indexOf("Opera")!=-1){