Tag: streaming

audio/videostream使用SimpleHTTPServer失败

我通过使用python -m SimpleHTTPServer调用服务器来将文件夹中的文件共享到其他设备。 我只是尝试使用这个& IT WORKS (但通过将错误(列在下面)在terminal)streamvideo/audio(标准MP4和MP3,都在20MB以下)到另一台计算机。 不知何故,video/audio失败(除了非常小的MP3文件)与iPhone / iPad的Safari玩。 这绝对与媒体文件无关,因为我在iPhone中使用Apache成功传输媒体文件。 任何想法为什么发生? Exception happened during processing of request from ('192.168.1.2', 51775) Traceback (most recent call last): File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock self.process_request(request, client_address) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 310, in process_request self.finish_request(request, client_address) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 323, in finish_request self.RequestHandlerClass(request, client_address, self) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 641, […]

iOS巨大的JSON(30MB)处理

我需要下载和parsing40mb的json。 现在我正在使用AFJSONRequestOperation,在旧设备上导致内存警告和崩溃。 应该怎么做? 我认为唯一正确的做法是将jsonstream式传输,但是我不知道如何做,或者哪​​个库最好。 请举例说明。 非常感谢!

在iOS中播放oggstream

有没有人玩iOS的oggstream? 我可以使用什么,而不必编写我自己的解码器? 我正在使用苹果的AVPlayer播放stream。 这个问题已经被问到这个线程的一部分: iOS在线广播stream问题,但没有得到回答。

如何用MPMoviePlayerController播放video

我正在使用此代码从苹果网站播放videostream – (IBAction)playMovie:(UIButton *)sender { NSLog(@"start playing"); //NSURL *url = [NSURL URLWithString:@"http://spatie.be/test.mov"]; NSURL *url = [NSURL URLWithString:@"http://stream.qtv.apple.com/events/mar/123pibhargjknawdconwecown/12oihbqeorvfhbpiubqnfv3_650_ref.mov"]; moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayBackDidFinish:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer]; moviePlayer.controlStyle = MPMovieControlStyleDefault; moviePlayer.shouldAutoplay = YES; moviePlayer.movieSourceType = MPMovieSourceTypeStreaming; [self.view addSubview:moviePlayer.view]; [moviePlayer setFullscreen:YES animated:YES]; } – (void) moviePlayBackDidFinish:(NSNotification*)notification { NSError *error = [[notification userInfo] objectForKey:@"error"]; if (error) […]