Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread James Darnley
On 2015-10-11 00:58, Moritz Barsnick wrote: > On Sun, Oct 11, 2015 at 00:29:25 +0200, James Darnley wrote: >> >> And you wonder why it's slow. You're on x86-64. You at least have SSE2 >> instructions. Why are you not using them? You have to explicitly >> disable assembly when building x264 to g

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread James Darnley
On 2015-10-11 00:51, Joseph L. Casale wrote: >>> [libx264 @ 0x1bc3e80] using cpu capabilities: none! >> >> And you wonder why it's slow. You're on x86-64. You at least have SSE2 >> instructions. Why are you not using them? You have to explicitly >> disable assembly when building x264 to get "no

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Moritz Barsnick
On Sun, Oct 11, 2015 at 00:29:25 +0200, James Darnley wrote: > > And you wonder why it's slow. You're on x86-64. You at least have SSE2 > instructions. Why are you not using them? You have to explicitly > disable assembly when building x264 to get "none". Actually, in my experience, while ffm

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Joseph L. Casale
quickest test was the static packages linked on the ffmpeg site, that produced greatly improved results. In your opinion, is the choice of libx264 most optimal for this type of work or do you recommend something else? Thanks a lot for taking the time, jlc # time ../ffmpeg-git-20151010-64bit-

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Joseph L. Casale
>> [libx264 @ 0x1bc3e80] using cpu capabilities: none! > >And you wonder why it's slow. You're on x86-64. You at least have SSE2 >instructions. Why are you not using them? You have to explicitly >disable assembly when building x264 to get "none". Right, so these packages are from a 3rd part re

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread James Darnley
On 2015-10-11 00:24, Joseph L. Casale wrote: > [libx264 @ 0x1bc3e80] using cpu capabilities: none! And you wonder why it's slow. You're on x86-64. You at least have SSE2 instructions. Why are you not using them? You have to explicitly disable assembly when building x264 to get "none". signa

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Joseph L. Casale
Hi Lou, >> With some of my attempts to encode with compression, the output >> becomes composed of segments which simply stall as if it were skipping >> frames, whereas the following seems like a start: > >I don't quite understand what you are saying. On several of my attempts where images were ca

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Moritz Barsnick
Hi Joseph, On Sat, Oct 10, 2015 at 21:51:51 +, Joseph L. Casale wrote: > With some of my attempts to encode with compression, the output > becomes composed of segments which simply stall as if it were skipping > frames, whereas the following seems like a start: If you need help in analyzing i

Re: [FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Lou
On Sat, Oct 10, 2015, at 01:51 PM, Joseph L. Casale wrote: [...] > With some of my attempts to encode with compression, the output > becomes composed of segments which simply stall as if it were skipping > frames, whereas the following seems like a start: I don't quite understand what you are sayi

[FFmpeg-user] Guidance on converting images to video

2015-10-10 Thread Joseph L. Casale
We have a source that produces groups of JPEG images that are 352x240 and ~10K in size. There are pretty close to 3000 for a 10 minute interval. When I encode as follows: ffmpeg -framerate 5 -i %05d-capture.jpg -codec copy output.mp4 I get a video that works as expected, its ~10 minutes long

Re: [FFmpeg-user] How to capture video and audio from MacBook's camera/microphone?

2015-10-10 Thread Thilo Borgmann
Am 10.10.15 um 17:43 schrieb Kuu Miyazaki: >> You will have to use the filters "video:audio" syntax, or the > -audio/video_device_index options. > > Thank you very much. > Now I can get a V+A file. > > Though the sound is still silent, the audio data itself seems to be included. > I will try twea

Re: [FFmpeg-user] How to capture video and audio from MacBook's camera/microphone?

2015-10-10 Thread Kuu Miyazaki
>You will have to use the filters "video:audio" syntax, or the -audio/video_device_index options. Thank you very much. Now I can get a V+A file. Though the sound is still silent, the audio data itself seems to be included. I will try tweaking some parameters. Thanks anyway, -Kuu $ ffmpeg -f avf

Re: [FFmpeg-user] How to capture video and audio from MacBook's camera/microphone?

2015-10-10 Thread Thilo Borgmann
Am 10.10.15 um 16:15 schrieb Kuu Miyazaki: > I'm trying to capture WebM(VP9+Opus) video on my macbook using ffmpeg. > I was able to create a video-only file. > But I have no idea how to create a vide+audio file. > Below are the device list and what I've done so far. > Does anyone have any advice?

[FFmpeg-user] How to capture video and audio from MacBook's camera/microphone?

2015-10-10 Thread Kuu Miyazaki
I'm trying to capture WebM(VP9+Opus) video on my macbook using ffmpeg. I was able to create a video-only file. But I have no idea how to create a vide+audio file. Below are the device list and what I've done so far. Does anyone have any advice? Thanks, -Kuu $ ffmpeg -f avfoundation -list_devices

Re: [FFmpeg-user] Quicksync Ubuntu

2015-10-10 Thread Maxim Kozlov
Hi. How to compile sdk + ffmpeg on ubuntu 12.04.5. server 1. apt-get install gcc gobjc pkg-config libpthread-stubs0-dev libpciaccess-dev make patch yasm g++ autoconf cmake \ automake build-essential libass-dev libfreetype6-dev libgpac-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev

Re: [FFmpeg-user] Compiling ffmpeg with libmfx

2015-10-10 Thread Maxim Kozlov
Got it! How to compile sdk + ffmpeg on ubuntu 12.04.5. server 1. apt-get install gcc gobjc pkg-config libpthread-stubs0-dev libpciaccess-dev make patch yasm g++ autoconf cmake \ automake build-essential libass-dev libfreetype6-dev libgpac-dev libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-

Re: [FFmpeg-user] Copy GOP structure

2015-10-10 Thread Moritz Barsnick
On Sat, Oct 10, 2015 at 17:15:41 +0800, Steven Liu wrote: > 2015-10-08 3:55 GMT+08:00 Reuben Martin : > > Is there any way to transcode an h264 stream, but retain the frame type and > > GOP structure of the origional? > you can try this command line > ffmpeg -i rtmp://xxx.xxx.xxx.xxx/live/stream -

[FFmpeg-user] FFmpeg Video Recording from Android Mobile Camera

2015-10-10 Thread Satinder Singh
Hi , 1. *I did some work on ffmpeg for android . * 2. *I built ffmpeg library in my android studio and that is perfectly working , I run a example from ffmpeg/doc/examples folder . * 3. *But , Now I want to record video from Android phone camera . * 4. *In linux that is very easy

Re: [FFmpeg-user] Error during installation of ffmpeg

2015-10-10 Thread Carl Eugen Hoyos
Jogh <163jogh 163.com> writes: > Since currently the configure file in ffmpeg don't > support mingw other than mingw32. > ``` slice in ffmpeg/configure > exesuf() { > case $1 in > mingw32*|win32|win64|cygwin*|*-dos| > freedos|opendos|os/2*|symbian) echo .exe ;; > esac > } $ grep

Re: [FFmpeg-user] Error during installation of ffmpeg

2015-10-10 Thread Jogh
It's an old mail. Not sure somebody has made the point. Hope not to make mess. Hi Carlo, You can try to change your MSYS/MINGW env. “$MSYSTEM" from "MINGW64" to "MINGW32". Since currently the configure file in ffmpeg don't support mingw other than mingw32. ``` slice in ffmpeg/configure exesuf()

Re: [FFmpeg-user] Install ffmpeg error

2015-10-10 Thread Steven Liu
你可以在这个github的作者的项目里提issue,ffmpeg官方版本对他这个目前应该也不会给与任何支持 2015-09-30 18:51 GMT+08:00 黄家永 : > Use this tool: > https://github.com/kewlbear/FFmpeg-iOS-build-script > ___ > ffmpeg-user mailing list > ffmpeg-user@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/

Re: [FFmpeg-user] Copy GOP structure

2015-10-10 Thread Steven Liu
2015-10-08 3:55 GMT+08:00 Reuben Martin : > Is there any way to transcode an h264 stream, but retain the frame type and > GOP structure of the origional? Preferably in real time with a live stream > without haveing to dump the frame data to a file or some other type or > pre-pass analysis. > you