Android :: PVMFFailure When Using MediaPlayer For Radio Streams

Sep 1, 2009

I am trying to build streaming radio into my app, which works fines streaming files over the internet, but when i try to use a shoutcast url in get the error below, which from the soruce code looks liek the mediaPlayer is looking for the duration in the header. Does anyone know if shoutcast urls will work withthe default media player? Or do i have to download chunks into a ping-pong buffer sor something? The url has no porblems downloading via the browser.

the error is:-

CODE:........................

Android :: PVMFFailure when using MediaPlayer for radio streams


Android :: RTSP - MediaPlayer Init - PVMFFailure

Jun 16, 2010

I have a camera by Cisco and like to stream it's video stream to my android phone. It's coded in MPEG4 so there should be no problem, but it's not working anymore (it worked with another camera a few weeks ago).
CODE:...................

View 1 Replies View Related

Games :: Create Home Screen Shortcuts To Radio Streams?

Sep 28, 2010

For example, Gensoid Lite, a Sega Genesis emulator, allows you to create homescreen shortcuts to launch specific ROMs inside the app. Are there any internet radio apps that have this same functionality? I'd like to create some icons to access my favorite stations right from the homescreen instead of opening the app and going through there. I've tried XiiaLive, Cherry rPlayer, Google Listen, and TuneIn Radio and none of those have this functionality.

View 2 Replies View Related

Sony Ericsson Xperia X10 :: Apps To Play Online Radio Streams?

Sep 22, 2010

Any apps available to listen to online radio streams?

View 4 Replies View Related

Android :: MediaPlayer.start - Doesnot Work Fine After Calling MediaPlayer.seekTo - 0

Apr 27, 2009

I have a requirement to play several sounds many times in my game so instead of creating the MediaPlayer again and again I have called mp.seekTo(0) in onCompletion(mp) so that it will restart. Sometimes the sound is not audible from the device when I call mp.start () after setting mp.seekTo(0); but the player calls onCompletion() without playing any sound, this is observed randomly on most of the sounds

My sounds are of short duration mostly less than a second.

I am using a separate MediaPlayer for each sound (as I need this) -

There are almost 28 sounds in my game so i will be creating 28 MediaPlayers.

Below is the attached code for player

Also If I try to play many sounds one after the other in a short period of time i get an error saying "no more track names available". can u tell Why this is happening...?

check the below code:

CODE:........

View 9 Replies View Related

Android : Play .asx - .pls Streams?

Jun 3, 2010

How can I play a .asx or a .pls stream? I tried Stream Media Player, but to no avail.

View 1 Replies View Related

Android :: Stop A Soundpool Of 4 Streams

Aug 22, 2010

What is the Easiest way to stop a soundpool of 4 streams.

mSoundManager.addSound(1, R.raw.svphorn);
mSoundManager.addSound(2, R.raw.svpphaser);
mSoundManager.addSound(3, R.raw.svpwail);
mSoundManager.addSound(4, R.raw.svpyelp);

I need a button to stop all sounds playing @ one time.

View 1 Replies View Related

Android :: How Does CTS Work - Where To Get The Test Streams

Nov 16, 2009

I am working on the CTS (Compatibility Test Suite), but I am a newer.

From my test, I found the following Fail:

CODE:.....

I have checked the CTS source code. And find the the following source code:

CODE:....................

View 3 Replies View Related

Android :: I/O Streams - Multiplayer Game?

Nov 11, 2010

I am developing a multiplayer game on android. I am having a Java server and android client. The android client issues multiple requests and receives responses from the server. However the performance is not smooth. At times the data received at the Java server is not what I send from android. It is junk or zeroes. However, some times, data is correctly received.

I was wondering is there any data loss in between and why? I am using java.net on both ends. Please let me know if anybody was facing a similar problem anytime during android development.

View 4 Replies View Related

Android :: Fiel Download - Java.net.URL - Streams

Oct 14, 2010

I am developing android a few days now and startet to write an application that gets a file from a server to display the content.

I have this code here

CODE:.....

The strange thing is that nothing is shown in the TextField. If I test the code in a standard java project the printing of the data (with println) works correctly in the console. But when i run it on the android vmachine nothing is shown. I got no more ideas left to proof the code. Anyone has some advices for a newcomer?

View 2 Replies View Related

Android :: Accessing The Data - Voice Streams And IOS Platforms

Sep 28, 2010

I haven't done any work with the Android or iOS platforms, but I have recently been pitched a project and I'm trying to see if it is even feasible.

Is there currently API hooks in the iOS and Android platforms for accessing / manipulating the voice / data streams? What I would like to do is encrypt all outgoing steams and decrypt all incoming streams before they reach and other processes that need that data.

I would assume that because the Android platform is open source one should be able to do this, it just may have to be hacked together. I'm more worried about iOS.

View 2 Replies View Related

Android :: Stagefright Mediaextractor - How To Detect Interlaced Streams In Video Files

Sep 7, 2010

Is it possible to detect scan type (progressive or interlaced) of a video file in stagefright?

I see below listed fields are query-able with metadata of file through stagefright, but not scan-type which i guess is avaiable in MP4 file header. Any hint on how to detect scan-type of video file at Stagefright player driver? Or is it available in opencore?

CODE:.............................

View 3 Replies View Related

Media :: An App That Plays Aac Streams?

Apr 22, 2010

AOR by leadapps did this well. But when I upgraded my moment to eclair 2.1, I could no longer find the app. This is one reason the android experience has been a let down for me; I'm no bagger or birther, but damn...this is one socialist OS. Anyway, what have you used to hear streams of .aac's?

View 2 Replies View Related

HTC EVO 4G :: TWIT Tv Streams Live With 2.2?

Aug 3, 2010

Just an FYI - on 2.1 Twit Live stream was dead, now it is alive and well - at least for me the 400kpbs stream seems rock solid.

Sorry if you aren't into Twit, but I watch that livestream pretty regularly.

View 3 Replies View Related

Android :: Variable Number Of Radio Buttons In Radio Group Inside Table?

Sep 9, 2010

I currently have code that creates rows in a table that hold a string in column 1 with a RadioButton in column 2. There can be a variable number of these rows. That all works just great, but I want to add them to a RadioGroup so only one button can be toggled at a time. When I tried to add the dynamic RadioButton to the RadioGroup AFTER I added it to the table row, I got an error saying that the child (the RadioButton) already had a parent. I agree, it does have one, the TableRow.

can you have radio buttons tied to a radio group inside of a row or, should I just code my own toggle mechanism and avoid RadioGroup all together? I mean, I could code the onClick to unclick all other radio buttons, but I would rather not do this if I can use the build in RadioGroup.

<ScrollView
android:id="@+id/ScrollViewModifyGroups"
android:layout_width="fill_parent"
android:layout_height="fill_parent".............

View 3 Replies View Related

Android :: Add Radio Group To Radio Buttons Inside Of Table?

Mar 2, 2010

I have multiple radio buttons which I want to layout using a table but also include them in a single radio group. I have the following xml layout:

<RadioGroup android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/Group1">

<TableLayout android:id="@+id/RadioButtons"
android:layout_width="wrap_content".........

But unfortunately the radio buttons inside the table seem to ignore the fact that they're inside of the RadioGroup tags and because of this you can select more than one radio button at the time. I noticed that by removing the table and just having the radio buttons it works just fine. How can I overcome this? Would it be as simple as declaring the radio group inside of the table instead of outside?

View 1 Replies View Related

Android :: XM Radio Application - Lose News And Public Radio?

Jul 14, 2010

I turned on my Droid this morning to listen to MSNBC and I heard the last 5 minutes of Keith Obermann (5:55 am est) and then all of my news and talk channels disappeared! Channels like CNN, C-SPAN, MSNBC and NPR are all gone from my favorites and the channel line-up. There is nothing in the "News and Public Radio" category.
Has anyone else noticed this? I'm thinking this must be a temporary glitch but I would hate to lose all of these channels. If you have the Sirius/ XM radio app, would you please check this on your Droid?

View 4 Replies View Related

General :: In-app OpenVPN Connection (via Streams And Sockets)?

May 22, 2012

Is it possible to write a in-app openvpn connection (via streams and sockets)? If it is, then is there any android application which managed that already? I have also problems finding in-depth openvpn protocol description.

View 4 Replies View Related

Android :: Radio Buttons In Radio Group In Table Row?

Sep 9, 2010

I currently have code that creates rows in a table that hold a string in column 1 with a RadioButton in column 2. There can be a variable number of these rows so I cannot just create it in the layout xml as radio1, radio2, etc. My code displays the table with the string and RadioButton pairs just great, but I want to add them to a RadioGroup so only one button can be toggled at a time.

When I tried to add the dynamic RadioButton to the RadioGroup AFTER I added it to the table row, I got an error saying that the child (the RadioButton) already had a parent. I agree, it does have one, the TableRow.
My question is, can you have radio buttons tied to a radio group inside of a row or, should I just code my own toggle mechanism and avoid RadioGroup all together? I mean, I could code the onClick to unclick all other radio buttons, but I would rather not do this if I can use the build in RadioGroup.

View 8 Replies View Related

Android :: FM Vs Pandora Vs Slacker Radio (best Internet Radio)

Nov 10, 2009

I just got my Droid but I frequently use Pandora and Last.FM on my computer at work. Last.FM - Seems like the service has a better list of artists than Pandora so i switched to it on my PC recently. On Android the service is the same but as an app it tends to be open in the background all the time and suffers from not being able to pause (like the PC version). The scrobbling could be nice for some users and it links to the android player. Sound Quality seems excellent, best of the three so far. Pandora - Haven't gotten to use it too much because it takes so long to load my station. Sound Quality seemed fine with my limited use.

Slacker Radio - Has the most music options of the three and seems likes the best application. It has plenty of options like keeping the screen from freezing while plugged in and on wifi without having to change your phone settings. Had to stop listening from poor sound quality though! Sound Quality started ok but a bassy boom and click started appearing after a few songs, forced to switch to Last.FM.

View 49 Replies View Related

Motorola Droid :: Remote PC Application That Streams Audio?

Jan 25, 2010

I have the paid application PhoneMyPC and it's truly great. It does everything that it claims to do really well. The only thing that is lacking is the streaming of audio. Is there an app similar to PhoneMyPC that streams audio as well as video?

View 5 Replies View Related

Motorola Droid :: App That Streams Electronica Type Music?

Mar 27, 2010

I am still relatively new to android apps and was wondering if there was an app any of you might know of that would enable me to listen to Electronica/House/Trance type radio stations?

View 8 Replies View Related

Motorola Droid X :: List Of Live Blogs & Streams

Jun 23, 2010

The day has finally come for the big announcement event. Most of us plan on following the conference live online, through a blog or hopefully a video/audio stream. This is a private event, so the chance of a video stream is obviously low. Nonetheless, I will be hunting the internet for a live feed just in case one's out there.

Let's use this thread to post links to the live blogs and/or streams, to make it a bit easier for people that aren't sure where to look. I'll do my best to update this first post throughout the day to reflect newly found links.

Live Blogs

Engadget
http://www.engadget.com/2010/06/23/live-from-verizons-motorola-droid-x-event/?sort=newest&refresh=20

Android Central
[url]

Verizon Wireless on Twitter
Verizon Wireless (VerizonWireless) on Twitter

Cnet
Reminder: Verizon Droid event June 23 | Android Atlas - CNET Blogs

Thedroidguy
[url]

MobileCrunch
[url]

Live Streams

None yet

View 49 Replies View Related

Android :: UGH No Wunder Radio Or Iheart Radio

Nov 10, 2009

Does anyone have an idea when we will see one of these apps for android?

View 37 Replies View Related

Android :: Any Radio Recording On Built In FM Radio Of HTC?

Feb 28, 2010

Android supports recording from the mic to amr format in the 3gp container. On the upcoming HTC Desire or even current HTC Desire, suppose I'm listening to the lovely built in FM radio and I want to make a recording of a breakfast show; would that be possible? Is there a possiblity for an app to be created that could record the built in radio in this manner? What about recording in a better quality like mp3? Does Android need to provide API access to the output speakers or... I am not reffering to internet/streaming radio, this is about the built in FM radio found in the latest HTC smartphones.

View 1 Replies View Related

General :: XBMC Livestreams Plugin To Play Streams From Links In XML File

May 19, 2012

App like xbmc livestreams plugin to play audio/video streams from xml file (url) with streaming links. looking to use it on android TV box.

Or if there is something allready available

View 2 Replies View Related

General :: Samsung Galaxy Nexus V4.4 - Video Streams Display Will Turn Automatically Off

Oct 10, 2013

I just switched from WebOS so I'm quite a noob to Android. Anyways, I bought a new Samsung Galaxy Nexus with Android 4.4.

Now to my issue: I like to watch video streams. The problem is, that the display will turn automatically off.

Solutions:
1. Play a stream with a video player - how can I do this?
2. Change settings so the display will not switch off on a stream, but will turn off when idle - is this even possible?
3. Turn off "turn off display when idle" setting - but I don't like this one.

View 4 Replies View Related

HTC Incredible :: FM Radio Receiver Makes CDMA Radio

May 3, 2010

Depends on the size and gauge of the wire of your headphones. Also depends on the position of the wires. FM radio is a little picky, but works fine- depending on the points mentioned. Old & wrong: The FM radio on the Inc must be the weakest radio in a phone, evah! Just tried it today and picks up half the channels my Ngage and N900 pick up well. A lot of channels barely come in, or are static filled. I thought Steely Dan said "FM has no static at all"? Makes the CDMA radio seem not that bad, in comparison I know- at LEAST it has a radio. Must be set to suppa powwa savva mode

View 32 Replies View Related

Android :: What Uses More Battery / Wi-Fi Radio / 3G Radio?

Jul 22, 2010

What uses more battery, Wi-Fi radio or 3G Radio ? I'm using an Eris.

View 7 Replies View Related

Android :: RTSP Streams Play Only Sound - While Local Does Video And Sound

Jul 10, 2010

In my application, RTSP streams play only sound without video, but if i specify the video path as a local file, it plays the video and audio.

How would i get the RTSP streams to show video?

CODE:.................

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved