MP3 Streaming problem

New iphone 6, ios 8.3. When streaming archived radio shows (MP3-128k) via WiFi or 4g, the stream restarts to the beginning after 2-3 minutes. I tried several of the archived shows and they all restart as mentioned. The live radio stream seems to work ok.
     The same files play all the way through (2-3 hours) on my desktop and ipod touch.

Is both Transmit and Receive running on same machine?
Rgds,
Seetesh

Similar Messages

  • AVAudioPlayer MP3 stream problems

    I am having problems getting an mp3 stream to work with AVAudioPlayer in 2.2. I built a simple app just to get streaming working with a .pls file. I am parsing the file perfectly fine in my player app, but for this simple test app I just grabbed one of the urls from the .pls file and use it directly. The problem I am running into is it is failing with a kAudioFileUnsupportedFileTypeError. In my sample code I use a hosted MP3 file as a control. it works perfectly fine.
    Is the problem that NSURLConnection is expecting a Content-Length field in the response? The stream won't return one because there is no end to the stream. If this is the problem what do you recommend for connecting to an audio data stream?
    I don't want to use the complex AudioQueue way of doing it. Here is the output of my program when running with an mp3 stream.
    2008-11-30 17:21:54.377 radiotest[27239:20b] Starting the song
    2008-11-30 17:21:54.382 radiotest[27239:20b] Operation could not be completed. (OSStatus error 1954115647.)
    2008-11-30 17:21:54.386 radiotest[27239:20b] song type failed
    2008-11-30 17:21:54.460 radiotest[27239:20b] Appending data - 215222
    2008-11-30 17:21:54.461 radiotest[27239:20b] Starting the song
    2008-11-30 17:21:54.467 radiotest[27239:20b] Operation could not be completed. (OSStatus error 1954115647.)
    Also, AVAudioPlayer initWithContentsOfURL:(NSURL*)url error:(NSError **)error throws a warning because it is conflicting with it's super's implementation of initWithContentsOfURL. Upon calling it, it fails every time. I am forced to use the initWithData method. Is this a known issue?
    I don't know what the html code is to format my code properly, sorry. Here is my code.
    Header file:
    // radiotestAppDelegate.h
    // radiotest
    #import <UIKit/UIKit.h>
    #import <AVFoundation/AVFoundation.h>
    @interface radiotestAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    UINavigationController *navigationController;
    AVAudioPlayer *player;
    NSMutableData *songData;
    @property (nonatomic, retain) IBOutlet UIWindow *window;
    @property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
    @property (nonatomic, retain) AVAudioPlayer *player;
    @property (nonatomic, retain) NSMutableData *songData;
    - (void) startPlaying;
    @end
    Here is the implementation file:
    // radiotestAppDelegate.m
    // radiotest
    #import "radiotestAppDelegate.h"
    #import "RootViewController.h"
    #import <AudioToolbox/AudioFile.h>
    @implementation radiotestAppDelegate
    @synthesize window;
    @synthesize navigationController;
    @synthesize player, songData;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Configure and show the window
    [window addSubview:[navigationController view]];
    [window makeKeyAndVisible];
    // -- build the request
    NSLog(@"Starting call");
    //NSURL *url = [NSURL URLWithString:@"http://www.toolshed-media.com/ts/jenny-lewis-acid-tongue.mp3"];
    NSURL *url = [NSURL URLWithString:@"http://208.80.52.58:80/WPEGFMDIALUPCMP3"];
    NSURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
    NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
    if (theConnection)
    songData=[[NSMutableData data] retain];
    - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
    [songData setLength:0];
    - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
    [songData appendData:data];
    NSLog([NSString stringWithFormat:@"Appending data - %d", [songData length]]);
    if(player.isPlaying == NO && [songData length] > 100000)
    NSLog(@"Starting the song");
    [self startPlaying];
    - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
    [connection release];
    [songData release];
    NSLog(@"Connection failed! Error - %@ %@", [error localizedDescription], [[error userInfo] objectForKey:NSErrorFailingURLStringKey]);
    - (void)connectionDidFinishLoading:(NSURLConnection *)connection
    NSLog(@"Succeeded! Received %d bytes of data",[songData length]);
    [connection release];
    [songData release];
    - (void) startPlaying
    NSError *error;
    AVAudioPlayer *av = [[AVAudioPlayer alloc] initWithData:songData error:&error];
    NSLog([error localizedDescription]);
    NSLog([error localizedFailureReason]);
    if(error.code == kAudioFileUnsupportedFileTypeError)
    NSLog(@"song type failed");
    player = av;
    [player play];
    - (void)dealloc {
    [songData release];
    [player release];
    [navigationController release];
    [window release];
    [super dealloc];
    @end

    This sample project: http://www.zdziarski.com/AVMeter.zip includes use of AVAudioPlayer with local files. The lines to look for are like these:
    NSURL *tickURL = [NSURL fileURLWithPath:[mainBundle pathForResource:@"tick" ofType:@"caf"]];
    tickPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:tickURL error:&error];
    To play an mp3 in your resources you would change @"tick" to contain the name of the file (without the extension), and change the ofType:@"caf" to be ofType:@"mp3".

  • Playing mp3 stream works well in Emulator but doesn't play on Device

    I'm facing this problem. I'm using flex && actionscript to play an mp3 stream on the phone.
    Code works great and the sound is played when the app is run in the flash builder emulator.
    However, when i deploy my app on a mobile device (tried several Android phones) everything is good except the stream doesn't play!
    Can you please help me??
    Here's my code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView"
                        creationComplete="view1_creationCompleteHandler(event)"
                        >
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  import flash.net.*;
                                  import flash.media.*;
                                  private  var req:URLRequest;
                                  private  var context:SoundLoaderContext = new SoundLoaderContext(8000, true);
                                  private   var s:Sound;
                                  private  var channel:SoundChannel = new SoundChannel();
                                  private  function AudioOn():void
                                            req = new URLRequest("http://stream2.srr.ro:8000/;stream.mp3");
                                            s = new Sound(req,context);
                                            channel=s.play();
                                  protected function view1_creationCompleteHandler(event:FlexEvent):void
                                            AudioOn();
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
    </s:View>

    Okay.. First a big thanks!!
    I've resolved the path issues and am now experimenting with formats other than SCORM that will hopefully launch off our LMS (SyberWorks).
    I think I know what a cross domain issue is... it seems pretty self evident, (ie) .htm/.swf files live on a different server domain than video or audio files.
    I think all my files are on the same domain in the zip file. However, are the following paths also an example of a cross domain issue?:
    Z:\orgs\ogslp\courses\2012videotest\videotestinternalsrvr\videotestinternalsrvr.htm
    (this is where I upload, or publish Captivate files)
    http://gslcampus/ogslp/courses/2012videotest/videotestinternalsrvr/videotestinternalsrvr.h tm
    (this is where clients access the training modules via IE & the Syberworks LMS, intranet)
    One more..... when publishing with the Captivate > Internal Server option what path do I input to access the server?
    Z:\orgs\ogslp\courses\2012videotest\videotestinternalsrvr\videotestinternalsrvr.htm
    (backdoor for uploading files)
    or
    http://gslcampus/ogslp/courses/2012videotest/videotestinternalsrvr/videotestinternalsrvr.h tm
    (actual internal, intranet url for accessing courses)
    PS when I upload files the following appears before the Z:
    Computer > SyberWorks (\\sousa)(Z:)
    Any advice would be appreciated - thanks for your time.
    wjf

  • Why does BackgroundMediaPlayer NOT play mp3 streams?

    I tried to make a universal app, I have a successful Win8 app, now I have tried to make a WinPhone version and find that this class can't play mp3 streams, for example
    http://europaplus.hostingradio.ru:8014/europaplus256.mp3

    Hello,
    There is no standard mp3 streaming protocol. Some sites use pseudo streaming by throttling a standard progressive download of mp3 data. While pseudo streaming may work on some Microsoft platforms is not officially supported by the Media Engine out of
    the box. A major problem with pseudo streams is their interaction with the internet cache. It is possible to overload the cache with extended listening sessions and eventually use up all the storage on the device. This is the big reason
    pseudo streaming is not supported.
    I would recommend that you check with the stream provider and ask them what streaming protocol they are using. If they are simply using HTTP with no underlying streaming protocol such as HLS or DASH then they are using pseudo streaming and you may have
    problems with playback on the current and future Microsoft platforms.  
    If you know that the stream provider's content is consistent (or you are the content provider) one possible solution is to write a custom
    MediaStremSource that will handle the network interactions, local cacheing and packet parsing. You can then pass the parsed samples down stream to the Media Engine for decoding and playback.
    The best solution however is to convince the content provider to switch to a real streaming protocol or offer a separate URL that supports a true streaming protocol. To future proof any new streaming implementation I always recommend MPEG DASH.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • Not able to download mp3 streams into iTunes like it used to.

    I am using iTunes v.2.0.3 on my Powerbook G3 with Internet Explorer 5.1.7 for a browser. I use iTunes to listen to mp3 radio streams w/o any problems until I downloaded Windows Media Player 7.1 for Mac & iCab 3.0 as a backup web browser. Now, I am not able to download any new mp3 streams. The radio tuner feature & the streams that I had saved in the library still work. I had tried to click on the "listen" button from several streaming sources, but the webpage stays the same, not even the download manager window opens to show it's downloading the stream & activates the iTunes application.
    My guess is that the 2 software downloads may have conflicted or change the settings somewhere & I do not know where to look to change them back to what it was previously. I would like to use both players if at all possible, but am not computer savvy to accomplish that yet. Any suggestions from those knowledgable in OS9 and/or iTunes would be appreciated to achieve that goal.
    Thanks
    highwaydog

    The more details you can provide the esier it will be for us to help you.
    Is this the CD by Goyte?  I see no reference of any kind online to it being protected and usually it be be one of the first things people would mention. Not many CDs have protection since this resulted in a very bad name when Sony tried it a while back. This is the original, store (or online) purchased plain audio CD?  If it is of some other type such as something with original WMA files then those could quite well be from protected downloads which cannot be legally converted.  Nor can they be played on a Mac (I don't think Flip4Mac plays protected WMA).

  • JMF an MP3 streaming

    Hi,
    I tried to write an JMF Plugin for an MP3 audio stream. The plugin should buffer the compressed MP3 data, but
    extending the AVReceive2.java with a plugin did not send any output to the player.
    Would someone please help me with a code snapshot?
    Any better ideas than using a plugin for MP3 stream buffering?
    Thanks in advance,
         Florian

    Hi all,
    the problem in detail:
    The plugin is not accepted as a pre-precessing plugin. JMF tries to konvert the source MP3 stream in an new MP3 stream!
    Could someone please help?
    Florian

  • ICloud photo stream problem

    Hi all - I really need your help. 
    My iPhoto '11 was working just fine until I upgraded it to 9.4.3.  I also just installed the recent system upgrade.  Now I am having multiple problems. It seems to stem from Photo Stream.  Activity Monitor shows that Photo Stream is using up gobs of CPU which is strange since it is supposed to not be working...
    In iPhoto, under the preferences, it shows that Photo Stream is not enabled.  If I check the box to turn it on, it just unchecks itself just as quickly.  But in the system preferences, it shows that Photo Stream is set up just fine.  Photo Stream is certainly not working.  And it seem to be totally screwing up iPhoto.  I have tried multiple iPhoto fix options (option alt fixes, restoring a backup library, uninstalling then reinstalling iPhoto) with no improvement.
    I'm not sure if the problem is coming from iPhoto or iCloud Photo Stream problems.  I am running OSX 10.8.4 on a 3.4 GHz Intel Core i7.
    Can anyone tell me what to do?  Thank you so much!

    Well Old Toad, I am stumped.
    I double checked and logged out of iCloud in both user accounts and made sure that PS was not enabled on either library.  Then I restarted the computer.  I went back to my main user account (second account set up = non administrator account) and to my main iPhoto library, logged into iCloud, tried turing on PS = did not work.
    If I do the exact same thing as above for a restore of a backup of my library = does not work.
    If I do the exact same thing above but log in with my first account (not my main one but it is the admin account on the computer) and access the test library I created = PS works just fine with no problem.
    It seems the problem with PS is limited to my primanry account (non-admin).  Do you think the admin privaledges difference between the two accounts could be the problem...?
    As always, I am thankful for your time and advice.

  • Nokia c2-03 online video streaming problem ...:(

    Hello.
    I have purchased new nokia c2-03, and i thought the phone would b awesome as its a nokia product. But this phone disappointed me a lot. The phone has good features being a low cost phone. But the main problem is it can't stream online videos. Its very strange to belive, i never thought that NOKIA could b so careless please nokia solve this streaming problem in next firmware update..
    Lookin forward for a reply.
    -GURU

    ENG
    I Am Sorry. In fact had the DST setting to + 1:0 and I changed to 12:0 am; As the clock time was delayed, because in Portugal we are indeed in summer time!, I changed the time directly. Unfortunately the reminders remain with an hour of advance. The alarm clock that is set crescento for 7:15 minutes as the set initially and never changed. The first reminder has been set for the 7:15 but is now changed to 6:15 due to this error. Does anyone have any suggestions other than modify all reminders. I would add that the Firmware of the Nokia C2 03 est actualized to a V7.48.
    PT
    Lamento. De facto tinha a definição de hora de verão para +1hora e alterei para 0horas;
    Como a hora do relógio ficou atrasada, pois em Portugal estamos de facto na hora de verão!, alterei directamente a hora.
    Lamentavelmente os lembretes continuam com uma hora de avanço.
    A crescento que o despertador está definido para as 7:15 minutos como o defini inicialmente e nunca sofreu alterações. O primeiro lembrete foi definido para as 7:15 mas está alterado para as 6:15 devido a este erro.
    Será que alguém tem alguma sugestão que não seja modificar todos os lembretes.
    Acrescento que o Firmware do Nokia C2 03 está actualizado para a V7.48.

  • New Radio Station & Streaming Problems

    I have added my favorite Public Radio station to my iTunes library, but I can not get it to connect. It shows up in the library as a radio station, but nothing happens when I click on the play button.
    In addition, I'm having trouble with all the radio stations I've tried that were already in the iTunes folder. I've tried changing the streaming buffer size in preferences, but the network keeps stalling and needing rebuffering, regardless of the streaming buffer size I choose.
    PowerBook PowerPC G4   Mac OS X (10.4.2)   Other computer is iMac, OS X v.10.3.9

    I single file in a playlist repeats constantly for me (just tried it - don't usually have playlists for single items), but I have never tried using repeat on an audio stream. I expect the repeat doesn't work with streams because iTunes never gets an end-of-file notification which would then tell iTunes to start again at the beginning - but that is just a guess.
    What happens if you open the stream in Quicktime? If the stream is in iTunes library, you can open it's Get Info box, click on Edit URL on the summary tab, and you can then copy the address to paste into Quicktime's Open URL. If the stream is one on the default iTunes Radio list, drag it into your Library and you can then click on the Edit URL button to copy the address. iTunes an Quicktime are not exactly the same, so you may get different results. You could also try VLC Player". Testing streams in another player may help you identify if it is really iTunes at fault.
    I usually don't have streaming problems, although I rarely have a stream on longer than 2 or 3 hours at a time and I think about 5 hours is the longest I've had a stream running.

  • Adobe air for Playbook & mp3 streaming

    I want to listen radio-canada streaming (Mp3).
    I coulndt find an apps to play streaming MP3 ( where I can paste the radio canada link)
    So I decide to install the widget, which need adobe air..
    I'm unable to acces adobe air download from the browser and the widget doesn't want to install
    Look like a pandora box....
    So, the question is...Is there any way to play mp3 streaming via the playbook or to install widget with adobe air?
    Thanks

    Have you tried the Nobex Radio app on the PlayBook?
    Maybe this has the station that you're trying to listen to.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!

  • Mp3 duplication problem

    For some reason my .mp3 files show up twice and in some cases three times in the media player. The strange thing is that I've tried to delete all music files and they still show up. I also tried doing a complete erase of all data using the Pre erase function and the mp3's all show up again when installed apps sync up again. It's like all mp3's have been merged with application data and sync'd to my profile.
    Has anyone else run into this?
    Post relates to: Pre p100eww (Sprint)

    'Duplicate Files Deleter' helps to find out mp3 duplication problem & it has the complete solution regarding removal of duplicate files too.
    Thanks.

  • How to play a regular mp3 stream on iPhone ?

    such as an mp3 stream from:  http://91.121.24.85:80/cybele.mp3
    This can be easily played on iTunes on the computer. But how do we play it from the iPhone directly without using a computer ?

    Clicking directly on the link you posted in Safari worked fine for me.
    For apps just type "stream mp3" into the search box in the AppStore.

  • Netflix Streaming Problem with new AppleTV 1080

    Hi there,
    I have had a AppleTV 2 720 for two years. It has been working perfectly with Netflix. I have a new AppleTV 1080 and the streaming from Netflix is awful. The picture drops definition and the audio goes out of sync and sometimes it just comes up with an error message. I have BT Infinity (30+mbps) and never have any issues streaming from Netflix via two or three devices at any one time. I have searched forums with no solution. I have tried lowering from 1080 to 720 on AppleTV, (kind of negates the purchase of a 1080 device though, eh), restarted and restored the AppleTV, logged out and into Netflix. The super HD picture when working is great but not sure if AppleTV 1080 is suited to Netflix. Surely I can't be the only sufferer here, please help! Thank you....

    I found this hidden away on the forum:
    This is what worked for me. It was posted by BenFinklea so he deserves the credit. Since I've done these steps I've had no streaming issues. I agree that it's an Apple issue and not a Netfix one. All my other devices on and off the same network stream just fine. To test this I even bought a Roku LT which I love, especially for the money and it streamed flawlessly. I perfer the format of my Apple TV so I was glad to have it operational again! Good luck.
    Use Google’s Public DNS Server To Fix Apple TV Streaming Problems
    1. Navigate to Settings >> General >> Network and select Configure TCP/IP.
    2. Select “Manually” next to Configure IP.
    3. Dont change the IP address or the Subnet Mask and Router Address. Just click "Done".
    4. Set the DNS Address screen with the following: 008.008.008.008 and click “Done.”
    You should now be able to stream Netflix on your Apple TV.
    I moved the Apple TV unit away from other electronics and rebooted the router/BT Hub and restarted Apple TV. I did the fix as above and it seems to be ok. Will update soon! Thanks Winston....

  • [WP8.1] MediaElement mp3 streaming not working

    Hi everybody,
    I was trying to update my app from a Windows Phone 8 to a Windows Universal app and I can't manage to get the MediaElement to work on the WP version
    This is the source of the MP3 streaming
    player.Source = new Uri("http://stream.srg-ssr.ch/m/rsp/mp3_128");
    but when I try playing it I the player closes and I get back the MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED although this is an mp3 file... Does somebody know hot to solve this?
    Thanks
    Nahuel Guidotti

    Hello Nahuel,
    You need to contact the content provider and find out what streaming protocol they are supporting. Out of the box we only support Microsoft proprietary streaming protocols. If the content provider supports a protocol such as HSL you will need to find a 3rd
    party
    MediaStreamSource that supports the protocol that the content provider is using.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • HDV "Stream Problem" while digitizing.

    I am trying to digitize some HDV footage shot in 720p30. I get deck control I can play the footage in the capture window but when I try to capture now it will capture only a few seconds and then stop and give me this message.
    "Stream Problem"
    "Capture was stopped due to a problem with the incoming stream. This might be a problem with the tape. All media up to this point has been preserved."
    Does anyone know what is going on here or how to fix it?

    Greetings everyone,
    Just want to add my two cents and testify that this is a real problem regardless of what JVC or Apple want to disavow. My comrade and I shoot with two JVC GY-HD100U's with the HDV 720p30 codec. We purchased the Firestore DR-HD100's (God bless their soul - I don't care what all the reviewers say about this product - they need a visit from the iPod development team) with the cameras and use those for majority of jobs. No problems with TC breaks. However take that backup tape that was simultaneously recording with the Firestore and perform long captures from tape, we encounter stream breaks. Both cameras have had this problem out of the box. We don't have a dedicated deck since we figured most work will come off the Firestores so when we capture from tape its from the camera. However the Firestores are limited by battery life and for long continuous shoots we fall back on tape. Hence the frustration of TC breaks. Could someone from JVC or Apple take some initiative and find the flaw? Thanks.
    iMac 20-inch 2 GHz Intel Core Duo   Mac OS X (10.4.5)   1GB System RAM/256MB Video RAM

Maybe you are looking for