Tagged Questions

2
votes
1answer
175 views

xuggler: no video in encoded 3gp file

i am trying to encode videos into 3gp format using xuggler, i somehow got it to work, work as in the program stopped throwing errors and exceptions, but the new file that is created does not have any ...
2
votes
1answer
602 views

Thumbnail image from .3gp file

Does anybody know how to get thumbnail (still image) from 3gb video file? First frame or something like that. I'm using .net, but solution can be in any language (managed or native), or third-party ...
1
vote
1answer
80 views

iPhone SDK - Converting .mov to .3gp

I need to convert a video in format ".mov" to ".3gp". I searched on Google and I found some people saying to use ffmpeg. I search a lot but I don't found any tutorial to how compile ffmpeg for iPhone ...
0
votes
1answer
508 views

how to add text watermark and convert video to 3gp with FFMPEG?

how to add text watermark and convert a video flv to 3gp with FFMPEG?
0
votes
0answers
121 views

How to to add a watermark to an existing 3gp video file programmatically using J2ME?

I need to programmatically add a watermark to an existing 3gp video file using J2ME on nokia or blackberry devices. On a desktop application I need to use ffmpeg library, but is there any way to do ...
0
votes
1answer
2k views

FFMPEG FLV to 3GP more then 176x144 size

Hi all I am converting my.flv to my.gp3 with this command ffmpeg -i my.flv -acodec libamr_nb -s 176x144 -ar 8000 -b 120000 -vcodec h263 -ab 10.2k -ac 1 my.3gp but size of my flv is 320x240 and I am ...
0
votes
1answer
135 views

Missing of image when conversion from flv to 3gp

I use in command line for ffmpeg -i Input.flv -vcodec h263 -b 256k -r 15 -s 320x240 -acodec libopencore_amrnb \ -ab 7.4k -ar 8000 -ac 1 -f 3gp Output.3gp The result is audio-only, without video. ...