0
votes
0answers
54 views

iOS - Build/configure FFmpeg failing, “unable to create an executable file”?

I'm attempting to build FFmpeg for iOS. I've tried following several tutorials on doing this (for example, tutorial 1, tutorial 2), all of which result in the same problem: ...
0
votes
0answers
29 views

how To configure ffmpeg for the iPhone 4s and iphone5

i want to configure ffmpeg,i have read https://github.com/yuvi/gas-preprocessor ,but this link only configure ffmpeg for the iPhone 3gs and iPod touch 3g using armv7 and iPhoneOS3.0.sdk, i want to ...
0
votes
0answers
133 views

iPhone - FFMPEG/VLC audio stream for iOS

I am trying to write an app for a school project that will play a video stream of the lab. They use Foscam cameras, and from what I understand they only stream audio in FFMPEG and VLC (a wrapper of ...
0
votes
0answers
105 views

iOS FFMPEG encode images to video

I am trying to take a set of UIImages and create a video file out of them with FFMPEG. Seems there are lots of questions about this topic but non have been able to get this working correctly for me. ...
0
votes
0answers
132 views

ffmpeg on ubuntu convert 3gp to iphone 5 format [closed]

I'm desperately trying to convert a 3GP video into something the iphone 5 will import and play. Verizon says they cannot help me that it is not possible to convert a Droid video to iphone. After much ...
2
votes
1answer
378 views

ios http live black screen

In my ios app I am trying to play videos using http live streaming. The playing goes well until I decide to use the scrubber and skip to some point that hasn't buffered yet. From that moment the audio ...
0
votes
0answers
32 views

To change the audio of the running live video

I want to change the audio of the running video in my application. For example, when I open my application it contain camera screen. Now I want that I can see the video that I am watching from the ...
0
votes
0answers
132 views

FFmpeg: audio synchronization with audioqueue

I have a video player in my aplication. I have no problem with avi files and mp3 audio, but when I play mpg or wmv, and I have to use avcodec_decode_audio3. The first seconds plays and then when the ...
0
votes
3answers
198 views

SPS values for H 264 stream in iPhone

Can someone point me to documentation that will help me get correct SPS and PPS values for iPhone.
1
vote
2answers
180 views

h264 Licensing, ffmpeg iPhone transcoding

Requirements 1. An application that should run, to begin with, on iPhone, and, in the end on a plurality     of SmartPhone devices. 2. Aim at having the trans-coding code supporting ...
1
vote
1answer
636 views

ffmpeg rtmp webcam live stream iphone/pad segment size too big

I'm transcoding a rtmp stream from a red5 server for use to live stream on a iphone or ipad device. I built latest ffmpeg version from git repo using the built in segmenter to create .ts files and ...
0
votes
1answer
154 views

IframeExtractor don't output sound with rtsp

I use IframeExtractor from the git mooncatventure, it play nice the .mov file. But when i try to read a rtsp stream, i hear no sound. This is the FFMEG dump from the rtsp stream: Metadata: title ...
1
vote
0answers
244 views

Auto detect rotation and rotate video accordingly with mencoder, handbrake cli or ffmpeg

I have found questions on rotating videos with mencoder and ffmpeg however I am after a fully automated solution. Can anybody help with this. I want to Detect the video orientation Rotate if ...
2
votes
1answer
188 views

Calling FFMPEG commands from xcode

i have got some library files of FFMPEG: libavcodec.a libavfilter.a libavutil.a libswscale.a libavdevice.a libavformat.a libswresample.a Can anybody tell me how to use these libraries if i want to ...
0
votes
1answer
311 views

Compiling ffmpeg for IOS (R_ABS reloc error)

I've been trying to compile the ffmpeg libraries for IOS. I can get it to work if I use --disable-asm, but for performance I'd like to build with them enabled. This is one of many configure commands ...
3
votes
2answers
145 views

How to get rid of iPhone pointer uint8_t warning?

I'm using FFMPeg on my iPhone project, but I'm getting a warning when using AVFrame *pFrame, like this: AVFrame *pFrame uint8_t *data[AV_NUM_DATA_POINTERS]; ... pFrame->data This is the ...
0
votes
1answer
181 views

Soft subtitles on iPhone

I know this question (or similar ones) has been asked all over the Web, but I still can't find a straight answer: Is it possible to mux soft subtitles into an mp4 video file (quickly, without ...
0
votes
1answer
166 views

How to programmatically concatenate two aac files

Does any one know how concatenate two aac audio files into one. I can do this with mp3 using ffmpeg but no luck with files with an m4a extension. I tried the following with no luck:ffmpeg -i ...
10
votes
1answer
4k views

Building FFMPEG library for iOS6.0 ARMv7 Processor

I cleaned up my question a little bit, when I wrote it the first time I was flustered. Now I can be more clear after taking a small break. Edit: learned that you have to build for ARMv7, ARMv7s ...
1
vote
2answers
310 views

What can be the substitute for SDL to direct ffmpeg decoded videos to screen in IOS?

I making a iOS video player using ffmpeg, the flow likes this: Video File---> [FFMPEG Decoder] --> decoded frames --> [a media director] --> /iphone screen (full and partial)/ A media director will ...
12
votes
2answers
2k views

How to get real time video stream from iphone camera and send it to server?

I am using AVCaptureSession to capture video and get real time frame from iPhone camera but how can I send it to server with multiplexing of frame and sound and how to use ffmpeg to complete this ...
0
votes
0answers
258 views

iOS : How to fill audioUnit IOdata from avFrame

I'm a little confused, I understand the basis of audio units in general but I can't seem to come up with an easy approach to my problem. I have an rtsp player application using ffmpeg and AudioQueues ...
0
votes
0answers
124 views

iPhone video PHP upload. Windows to HTML5 <video> tag

As those of you with an iPhone know, the iCloud uploads all pictures and videos taken on the iPhone to the cloud and, thereafter, your home PC. I am uploading videos to my web page through a PHP ...
0
votes
0answers
479 views

Problems compiling ffmpeg for iOS

I seen a few posts similar to this one but the problem I'm having is slightly different, I downloaded the ffmpeg source and ran configure like below: ./configure --disable-doc --disable-ffmpeg ...
0
votes
1answer
1k views

FFmpeg decode H264 video too slowly

I am currently working on a project on iPhone using FFMpeg. I can decode all the formats I need but when I want to play a h264 video, ffmpeg decodes frames too slowly. I tried to see where the ...
0
votes
1answer
221 views

ffmpeg auto dection portrait then do the necessary flip

Is it possible to have ffmpeg detect the video size, and if it's not landscape, have it do the rotate to 90 degress clockwise? I have found an article here, but am not sure if it can detect this ...
1
vote
0answers
550 views

ffmpeg : playing udp stream

I'm playing udp stream on iDevice using ffmpeg. It does play the video and audio successfully. The only issue I've got here that the following function call does take a long time ...
0
votes
0answers
299 views

Objective-c. How to convert wav file to flac file?

I have ffmpeg library and libFLAC, what library is better to use in xcode project and how to use ffmpeg for convert wav file to FLAC file?
1
vote
1answer
454 views

ffmpeg with AudioUnit

What I have My aim is to parse some media file using ffmpeg and provide video and audio playback. Which I do successfully using the OpenGL for video and AudioQueue for audio. What I need to do I ...
0
votes
0answers
176 views

Achieving very poor fps for my iphone app for decode + display h264 frames using ffmpeg and opengl

I have three steps process for my application which display h264 frame on iphone screen. 1) decode using ffmpeg 2) scale and colorspace convertion (scale to 256 X 256 Opengl ES 1 texture and convert ...
0
votes
1answer
651 views

Truly live streaming to Android/iPhone

I have spent quite a while (past week) trying this to little avail. However, what I want seems completely unheard of. So far, I have reviewed recommendations available through google, which include ...
0
votes
1answer
167 views

Right choice to play audio and video content

What I'm doing : I need to play audio and video files that are not supported by Apple on iPhone/iPad for example mkv/mka files which my contain several audio channels. I'm using libffmpeg to find ...
2
votes
0answers
496 views

cannot open file using avformat_open_input - returns “Cannot open! Invalid data found when processing input”

I am just playing with ffmpeg on iOS 5. I started with something simple, like opening .mov file. The code fragment: AVFormatContext *pFormatCtx = NULL; av_register_all(); NSString* fileName = ...
0
votes
3answers
1k views

video playing sample on iPhone using libffmpeg

can someone please provide a reference or an example on usage of libffmpeg library for playing video files not supported by apple. Let consider mkv file. I suppose the library decodes and passes the ...
1
vote
1answer
366 views

transcode segment files without stutter for http live streaming

I segmented a multicast video stream into small ts files for my http live streaming service and it worked quite well. Then I found the bitrate of the source was too high (1.5mbps) so I set up a ...
3
votes
0answers
229 views

pjsip build for iOS 5, won't make

I retrieved the latest build from the SVN trunk on Friday and attempted to build following the directions on the getting started wiki. make dep seems to execute without any problems, but make fails ...
2
votes
3answers
1k views

FFMPEG: Videos converted from FLV to MP4 does not play in iPod but works in iPhone

I used below command to convert videos from FLV,M4V to MP4. ffmpeg -y -i video_1336406262.flv -vcodec libx264 -vpre slow -vpre ipod640 -b 250k -bt 50k -acodec libfaac -ac 2 -ar 48000 -ab 64k ...
2
votes
3answers
719 views

Orientation issue with mobile recordings

When I convert .mov files from iPhone 4 and .3gp from Android with FFMPEG. I need to rotate the video 90 degress, but iPhone 4s needs 180 degress... Is there any way to fix this?
0
votes
1answer
871 views

ffmpeg on iOS 5.1 Undefined Symbols Error

So I've spent several hours now working through the scant amount of information available online about building ffmpeg for iOS. The building process seems to work well and I end up with fat files for ...
0
votes
1answer
541 views

ffmpeg avformat_open_input not working in device

I have a method in an iOS project that calls avformat_open_input(), it runs very well in the simulator, however, when I try to run it on the device it hangs up and just stays there. Has anyone seen ...
2
votes
1answer
1k views

Need to write to a file using fopen in a C++ class for iOS project

I have a project that uses C++ classes and FFmpeg, I need to use fopen and write a file to the app sandbox, so the code that I need to write in C++ is the equivalent of: NSArray *paths = ...
1
vote
2answers
176 views

Error building app

I am having an issue trying to build my program, which is using a C++ class to dela with FFmpeg objects: Undefined symbols for architecture armv7: ...
1
vote
1answer
450 views

iPhone camera live steaming

I have downloaded ffmpeg lib file and complied it for armv7. I added ffmpeg lib files in my project successfully. i am able to get iphone camera live streams using AVFoundation. Now the problem is ...
0
votes
1answer
329 views

ffmpeg use on iOS

I understand that to use FFmpeg in an iOS app, you use the ./configure and make to generate the .a files, that you will add to the project. My question is, once the .a files show up in the project ...
1
vote
0answers
1k views

Displaying YUV420 data using Opengles shader is too slow

I have a child thread called A to decode video using ffmpeg on iPhone 3GS, another thread called B to display yuv data, in thread B, I used glSubTexImage2D to upload Y U V textures, and then convert ...
3
votes
2answers
3k views

ffmpeg won't ./configure in iOS5.1

I am trying to build ffmpeg on iOS5.1 (armv7), when I try to run ./configure like this: ./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --enable-cross-compile ...
0
votes
1answer
443 views

Generating 64kbps audio-only mpegts for HTTP Live segmenter to meept 64kbps audio only requirement

I am trying to convert our mp4 files into mpeg-ts and segment it into .ts files for my iphone app to play. I am using Carson McDonalds's HTTP-Live-Video-Stream-Segmenter-and-Distributor to do that. ...
3
votes
1answer
4k views

Unsupported compiler 'GCC 4.2' selected for architecture 'i386'

I downloaded this sample project (http://tunein.com/mobile/ios/tunein_radio_source.zip), but when compiling, I am getting in the ffmpeg library this error: Unsupported compiler 'GCC 4.2' selected for ...
0
votes
2answers
166 views

Is there a pre built compiled version of ffmpeg for iphone?

I am struggling in compiling ffmpeg with no success. Is there any ready for use, pre compiled libraries for the iphone? In general, what I need is to stream a radio station in mms wmv format, is ...
2
votes
2answers
14k views

iPhone HTTP Streaming .m3u8 and .ts files - how to create using ffmpeg

I'm trying to get apple-validated http media streams using ffmpeg and am getting errors. Here are some error examples: WARNING: Playlist Content-Type is 'application/x-mpegurl', but should be ...

1 2 3 4