Re: [FFmpeg-user] Blackmagic Intensity Pro - how to capture video with audio?

2014-09-11 Thread Damian Głodny
Hi, I didnt have any problems with Intensity Pro. I used that card on 
Windows 8.1 and Windows Server 2011 with Intel CPUs like i7 4770k and Asus 
motherboards. I also dont have any experience with Intensity Shuttle.

If you want only capture video maybe you should look at Decklink Mini 
Recorder. Its cheaper than Intensity Pro. And I also didnt have any problems 
with Mini Monitor and Mini Recorder cards.




Dnia 2014-09-10 17:14 Jay Muthialu napisał(a):

Hi Damien

I am planning to buy either Blackmagic Intensity Pro card or Intensity 
Shuttle usb3.0 for my testing. Would you mind sharing your hardware spec and 
Windows version which is working for your Intensity Pro card? Also do you 
have any inputs if Intensity shuttle will work in Windows 8 on a regular 
laptop. My objective is to do experimental testing and I am not planning to 
use to capture videos for more than 5 to10, minutes so I think I might not 
need heavy specs as typically expected in Blackmagic design products. Any 
thoughts would be welcome.

Regards
Jay

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread Clément Bœsch
On Thu, Sep 11, 2014 at 12:23:35PM +0900, Kimio Miyamura wrote:
 
  2014/09/01 4:05PM Clément Bœsch u...@pkh.me wrote: 
  
  On Mon, Sep 01, 2014 at 03:39:08PM +0900, Kimio Miyamura wrote:
  
  On 2014/09/01, at 2:11PM, Clément Bœsch u...@pkh.me wrote:
  
  On Mon, Sep 01, 2014 at 10:02:58AM +0900, Kimio Miyamura wrote:
  
  I searched web and found that modification of ffmpeg configure script is 
  required: 
  
  -enabled libmodplug require libmodplug libmodplug/modplug.h 
  ModPlug_Load -lmodplug
  +enabled libmodplug require libmodplug libmodplug/modplug.h 
  ModPlug_Load -lmodplug -lstdc++
  
  or
  
  -enabled libmodplug require libmodplug libmodplug/modplug.h 
  ModPlug_Load -lmodplug
  +enabled libmodplug require libmodplug libmodplug/modplug.h 
  ModPlug_Load -lmodplug -lc++
  
  I think either of them should be added to ffmpeg compile script.  How do 
  you think?
  
  Does -lstdc++ or -lc++ appears in pkg-config --libs libmodplug?
  
  $ pkg-config --libs libmodplug
  -L/Volumes/ffmpeg_compile/lib -lmodplug
  
  So either -lstdc++ or -lc++ don't appear in the command output.  
  
  I checked libmodplug.pc.  
  
  $ cat /Volumes/ffmpeg_compile/lib/pkgconfig/libmodplug.pc 
  prefix=/Volumes/ffmpeg_compile
  exec_prefix=${prefix}
  libdir=${exec_prefix}/lib
  includedir=${prefix}/include
  
  Name: libmodplug
  Description: The ModPlug mod file playing library.
  Version: 0.8.8.5
  Requires: 
  Libs: -L${libdir} -lmodplug
  Libs.private: -lstdc++ -lm
  Cflags: -I${includedir}
  
  -lstdc++ appears in Libs.private: line.  But even though configure with 
  ./configure --pkg-config-flags=--static --enable-libmodplug, the result 
  is same error.  
  
  
  Right, that's because libmodplug wasn't detected through pkg-config, which
  I just fixed in git/master. Can you git pull and retry that latest command
  with --pkg-config-flags=--static?
 
 A information for Windows (MinGW?) user.  
 
 With above ffmpeg change, Windows (MinGW?) user encounters libmodplug not 
 found error when configuring ffmpeg with libmodplug-0.8.8.5.  
 This is because of mod plug.h's   MODPLUG_EXPORT macro.  The 
 macro is defined as __declspec(dllimport) would be added, without defining 
 MODPLUG_STATIC.  

Can you explain how this is different from before the pkg-config patch?

 Then, called as `_imp__ModPlug_Load' from ffmpeg configure, and then result 
 in libmodplug not found error.  (I'm not Windows user.  I'm writing the error 
 mechanism based on one of my friend's comment who using Windows)
 

 The countermeasure is either of bellow 3.
 1.Define MODPLUG_STATIC in modplug.h.

What is the consequence of this when it's not static?

 2.Add -DMODPLUG_STATIC to Cflags: -I${includedir} line in libmodplug.pc.

Sounds like you have to add this to Cflags.private or something so it's
raised with --static. You need to see this with modplug itself

 3.Configure ffmpeg with adding --extra-cflags=-DMODPLUG_STATIC option.
 

We indeed currently do #define MODPLUG_STATIC in the
libavformat/libmodplug.c itself, so it should probably be in the configure
test as well. Unfortunately, I'm not sure how this actually affects the
linking when only a shared version of the library is available. Also, I
don't understand how this previously worked, because the configure test
never had it.

[...]

-- 
Clément B.


pgpvzZ91t_3Fh.pgp
Description: PGP signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] FFMPEG RTSP Streaming

2014-09-11 Thread Imran Husain
Hi,

I'm trying to stream mp3 file(locally store) using below command:

ffmpeg -re -i song.mp3 -f rtsp -muxdelay 0.1 rtsp://192.168.1.21:8556/song

ffmpeg -re -i song.mp3 -c copy -f rtsp -rtsp_transport tcp
rtsp://localhost:/live.sdp

ffmpeg -re -y -i song.mp3 -vcodec libx264 -b:v 600k -r 25 -s 640x360
-filter:v yadif -ab 64k -ac 1 -ar 44100 -f flv rtsp://
192.168.1.21:8556/song

...100 diff ways.

but after ctrl+C i got error message
Could not write header for output file #0 (incorrect codec parameters ?):
Error number -5 occurred

Can you please suggest me what I'm doing wrong?

My Question::

Q1:How to stream local mp3 file with rtsp on Windows 8.?(any setting needs)

Q2:For rtp what is the exact ip address range ?(i tried above command with
rtp it stream but stream only locally )

Q-3 What can be the input for ffserver? Can we capture soundcard as an
input for ffserver?(because of feeds(2-step process for streaming ) it
increase delay).

my aim is to pick sound from soundcard and stream it with rtsp with minimum
delay(1sec) (on local network) .How i can achieve this with  FFMPEG?


Thanks  Regards

Imran Husain
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] How to delete digital silence?

2014-09-11 Thread Барт Гопник
 Now I'm using proprietary software to delete
 digital silence from the beginning and from the
 end of *.wav file.

 Can I solve this problem using FFMPEG (only)?


 Did you already test the silencedetect and
 silenceremove filter?
 https://ffmpeg.org/ffmpeg-filters.html#silencedetect


No, looks like it is new filters.

Should I combine these 2 filters (silencedetect and silenceremove) or
I can solve my problem using only silenceremove filter? I need
delete absolute (not noise) digital silence only from beginning and
from the end of audio file (not from middle).

Could you please help me to create command line to do this?

Thanks in advance for your help!
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread Kimio Miyamura

 2014/09/11 6:19PM Kimio Miyamura xan...@apost.plala.or.jp wrote: 

Sorry I reposted same message to the list...


// Miya

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Transcoding video with subtitles to mp4 or mpegts

2014-09-11 Thread Xavier Benech


Thanks for your answer.

Just to be sure, is there any bitmap subtitles codec that may be used in 
mp4 or mpeg-ts container?


Xavier.

On 10/09/14 18:49, Carl Eugen Hoyos wrote:

Xavier Benech xavier.benech at xb-labs.fr writes:


I've got videos with several subtitles streams using
subrip and dvdsub codecs.
When I try to transcode them into mp4 and/or mpegts,
from what I've read so far it seems I must use
-scodec mov_text option.

Note that unfortunately the output files are still
not completely compatible with Quicktime;-(


But this seems to work only if input subtitles
stream contains subtitles as text.

Definitely (FFmpeg does not use OCR).


This leads to my question: How can I determine if a
subtitle stream can be transcode to mov_text? Is
there a list of subtitles codecs that are pur text?

The following are the bitmap subtitles:
dvbsub, dvdsub, xsub and pgssub

Teletext is both.

Carl Eugen

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user




--
Xavier Benech
xavier.ben...@xb-labs.org
http://www.xb-labs.org


--
Xavier Benech
Consultant Independant
xavier.ben...@xb-labs.fr
Mob.: 06 30 39 72 95
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] (Cross-platform) FFMPEG based GUI direct stream copy linear video editor

2014-09-11 Thread Барт Гопник
I'm not really sure where to ask this... But I hope FFMPEG developers
and users can help.

FFMPEG official site has list of FFMPEG based projects
(https://trac.ffmpeg.org/wiki/Projects)

I use VirtualDub for linear video montage using direct stream copy
mode (without recompression). It is GNU GPL licensed, but is designed
only for Microsoft Windows and operates on AVI files.

FFMPEG is excellent cross-platform utility that supports many formats
(codecs and containers). It can be used for split and merge video
files (not only AVI) using direct stream copy mode, but FFMPEG is
console UI application.

Is there GUI video editor (based on FFMPEG) (cross-platform or maybe
only for Linux or maybe only for Windows) that can split and merge
video files (not only AVI) using direct stream copy mode and have
preview window?

Now I use video player, watch the input video file, remember the time
for split video to fragments and write console line script for merge
these fragments. All work is OK, but it is very inconvenient.

At the worst, are there players or editors that can generate project
file (that contain time markers for split and merge) that can be used
with FFMPEG?

Thanks in advance for your help!
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread Kimio Miyamura

 2014/09/11 4:07PM Clément Bœsch wrote: 
 
 On Thu, Sep 11, 2014 at 12:23:35PM +0900, Kimio Miyamura wrote:
 
 2014/09/01 4:05PM Clément Bœsch u...@pkh.me wrote: 
 
 On Mon, Sep 01, 2014 at 03:39:08PM +0900, Kimio Miyamura wrote:
 
 On 2014/09/01, at 2:11PM, Clément Bœsch u...@pkh.me wrote:
 
 On Mon, Sep 01, 2014 at 10:02:58AM +0900, Kimio Miyamura wrote:
 
 I searched web and found that modification of ffmpeg configure script is 
 required: 
 
 -enabled libmodplug require libmodplug libmodplug/modplug.h 
 ModPlug_Load -lmodplug
 +enabled libmodplug require libmodplug libmodplug/modplug.h 
 ModPlug_Load -lmodplug -lstdc++
 
 or
 
 -enabled libmodplug require libmodplug libmodplug/modplug.h 
 ModPlug_Load -lmodplug
 +enabled libmodplug require libmodplug libmodplug/modplug.h 
 ModPlug_Load -lmodplug -lc++
 
 I think either of them should be added to ffmpeg compile script.  How do 
 you think?
 
 Does -lstdc++ or -lc++ appears in pkg-config --libs libmodplug?
 
 $ pkg-config --libs libmodplug
 -L/Volumes/ffmpeg_compile/lib -lmodplug
 
 So either -lstdc++ or -lc++ don't appear in the command output.  
 
 I checked libmodplug.pc.  
 
 $ cat /Volumes/ffmpeg_compile/lib/pkgconfig/libmodplug.pc 
 prefix=/Volumes/ffmpeg_compile
 exec_prefix=${prefix}
 libdir=${exec_prefix}/lib
 includedir=${prefix}/include
 
 Name: libmodplug
 Description: The ModPlug mod file playing library.
 Version: 0.8.8.5
 Requires: 
 Libs: -L${libdir} -lmodplug
 Libs.private: -lstdc++ -lm
 Cflags: -I${includedir}
 
 -lstdc++ appears in Libs.private: line.  But even though configure with 
 ./configure --pkg-config-flags=--static --enable-libmodplug, the result 
 is same error.  
 
 
 Right, that's because libmodplug wasn't detected through pkg-config, which
 I just fixed in git/master. Can you git pull and retry that latest command
 with --pkg-config-flags=--static?
 
 A information for Windows (MinGW?) user.  
 
 With above ffmpeg change, Windows (MinGW?) user encounters libmodplug not 
 found error when configuring ffmpeg with libmodplug-0.8.8.5.  
 This is because of mod plug.h's  MODPLUG_EXPORT macro.  The 
 macro is defined as __declspec(dllimport) would be added, without defining 
 MODPLUG_STATIC.  
 
 Can you explain how this is different from before the pkg-config patch?

There are no difference in mod plug.h between pkg-config patch and before.  
To build ffmpeg (Before pkg-config patch) with libmodplug support, Windows user 
modified ffmpeg configure script as my first message.  They added -lstdc++ to 
enabled libmodplug line as workaround.  

-enabled libmodplug require libmodplug libmodplug/modplug.h 
ModPlug_Load -lmodplug
+enabled libmodplug require libmodplug libmodplug/modplug.h 
ModPlug_Load -lmodplug -lstdc++

 Then, called as `_imp__ModPlug_Load' from ffmpeg configure, and then result 
 in libmodplug not found error.  (I'm not Windows user.  I'm writing the 
 error mechanism based on one of my friend's comment who using Windows)
 
 The countermeasure is either of bellow 3.
 1.Define MODPLUG_STATIC in modplug.h.
 
 What is the consequence of this when it's not static?

Yes it's a workaround for ffmpeg static building.  If build ffmpeg as shared, 
this workaround is not needed.  

 2.Add -DMODPLUG_STATIC to Cflags: -I${includedir} line in libmodplug.pc.
 
 Sounds like you have to add this to Cflags.private or something so it's
 raised with --static. You need to see this with mod plug itself

You are right, but this is a workaround for ffmpeg static building too.  It 
does not mean that libmodplug.pc should be changed in it's source code.  

 3.Configure ffmpeg with adding --extra-cflags=-DMODPLUG_STATIC option.
 
 We indeed currently do #define MODPLUG_STATIC in the
 libavformat/libmodplug.c itself, so it should probably be in the configure
 test as well. Unfortunately, I'm not sure how this actually affects the
 linking when only a shared version of the library is available. Also, I
 don't understand how this previously worked, because the configure test
 never had it.


In fact, the error in Windows is not related with ffmpeg.  It is derived from 
macro in modplug.h.  Here   , I pickup central of this issue: 

01 #if defined(_WIN32) || defined(__CYGWIN__)
02 # if defined(MODPLUG_BUILD)  defined(DLL_EXPORT)   /* building libmodplug 
as a dll for windows */
03 #   define MODPLUG_EXPORT __declspec(dllexport)
04 # elif defined(MODPLUG_BUILD) || defined(MODPLUG_STATIC) /* building or 
using static libmodplug for windows */
05 #   define MODPLUG_EXPORT
06 # else
07 #   define MODPLUG_EXPORT __declspec(dllimport)  /* 
using libmodplug dll for windows */
08 # endif
09 /* FIXME: USE VISIBILITY ATTRIBUTES HERE */
10 #elif defined(MODPLUG_BUILD)
11 #define MODPLUG_EXPORT
12 #else
13 #define MODPLUG_EXPORT
14 #endif

You may see that without MODPLUG_STATIC definition, _imp__ prefix is added to 
function name.  All 3 countermeasure are workaround to 

[FFmpeg-user] ffserver Unknown VideoCodec: libx264

2014-09-11 Thread Ajay Parashar
ffserver says Unknown VideoCodec: libx264, but I assume libx264 is enabled in 
ffmpeg.
Please let me know how this issue can be resolved?
logs of ffserver and ffmpeg as below:

*
ffserver -f stream_ffmpeg_streaming.conf

ffserver version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
  built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 4.8.3-1)
  configuration:
  libavutil  52. 92.100 / 52. 92.100
  libavcodec 55. 69.100 / 55. 69.100
  libavformat55. 48.100 / 55. 48.100
  libavdevice55. 13.102 / 55. 13.102
  libavfilter 4. 11.100 /  4. 11.100
  libswscale  2.  6.100 /  2.  6.100
  libswresample   0. 19.100 /  0. 19.100
stream_ffmpeg_streaming.conf:18: Unknown VideoCodec: libx264
Error reading configuration file 'stream_ffmpeg_streaming.conf': Invalid 
argument

**
ffmpeg -re -i udp://226.0.0.1:1234 -vcodec libx264 - 
http://10.125.133.31:8080/feed1.ffm

ffmpeg version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
  built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 4.8.3-1)
  configuration:
  libavutil  52. 92.100 / 52. 92.100
  libavcodec 55. 69.100 / 55. 69.100
  libavformat55. 48.100 / 55. 48.100
  libavdevice55. 13.102 / 55. 13.102
  libavfilter 4. 11.100 /  4. 11.100
  libswscale  2.  6.100 /  2.  6.100
  libswresample   0. 19.100 /  0. 19.100

Regards
Ajay



The information contained in this e-mail and any accompanying documents may 
contain information that is confidential or otherwise protected from 
disclosure. If you are not the intended recipient of this message, please 
immediately alert the sender by reply e-mail and then delete this message. Any 
dissemination, distribution or other use of the contents of this message by 
anyone other than the intended recipient is strictly prohibited. R Systems has 
taken every reasonable precaution to minimize the risk, but is not liable for 
any damage you may sustain as a result of any virus in this e-mail. You should 
carry out your own virus checks before opening the e-mail or attachment.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] ffserver Unknown VideoCodec: libx264

2014-09-11 Thread James Darnley
On 2014-09-11 13:59, Ajay Parashar wrote:
 ffserver says Unknown VideoCodec: libx264, but I assume libx264 is enabled in 
 ffmpeg.
 Please let me know how this issue can be resolved?
 logs of ffserver and ffmpeg as below:

 ffserver version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 
 4.8.3-1)
   configuration:

 ffmpeg version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 
 4.8.3-1)
   configuration:

I don't see --enable-libx264 anywhere in the (empty) configuation line
printed by both ffmpeg and ffserver.

 The information contained in this e-mail and any accompanying documents may 
 contain information that is confidential or otherwise protected from 
 disclosure. If you are not the intended recipient of this message, please 
 immediately alert the sender by reply e-mail and then delete this message. 
 Any dissemination, distribution or other use of the contents of this message 
 by anyone other than the intended recipient is strictly prohibited. R Systems 
 has taken every reasonable precaution to minimize the risk, but is not liable 
 for any damage you may sustain as a result of any virus in this e-mail. You 
 should carry out your own virus checks before opening the e-mail or 
 attachment.

Am I the intended recipient?  I'm not sure.




signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] ffserver Unknown VideoCodec: libx264

2014-09-11 Thread Ajay Parashar
Please find detail logs of ffmpeg as below:

*
ffmpeg -re -i Cars2.mp4 -f mpegts udp://226.0.0.1:1234
ffmpeg version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
  built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 4.8.3-1)
  configuration:
  libavutil  52. 92.100 / 52. 92.100
  libavcodec 55. 69.100 / 55. 69.100
  libavformat55. 48.100 / 55. 48.100
  libavdevice55. 13.102 / 55. 13.102
  libavfilter 4. 11.100 /  4. 11.100
  libswscale  2.  6.100 /  2.  6.100
  libswresample   0. 19.100 /  0. 19.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Cars2.mp4':
  Metadata:
major_brand : isom
minor_version   : 512
compatible_brands: isomiso2avc1mp41
creation_time   : 1970-01-01 00:00:00
title   : 09--0125--Cars 2 - Trailer - 
http://www.archive.org/details/09--0125--cars2-Trailer
encoder : Lavf52.88.0
comment : license:http://creativecommons.org/licenses/by-nd/3.0/
  Duration: 00:01:26.46, start: 0.00, bitrate: 611 kb/s
Stream #0:0(eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), 
yuv420p, 576x240, 510 kb/s, 24 fps, 24 tbr, 24 tbn, 48 tbc (default)
Metadata:
  creation_time   : 1970-01-01 00:00:00
  handler_name: VideoHandler
Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 
96 kb/s (default)
Metadata:
  creation_time   : 1970-01-01 00:00:00
  handler_name: SoundHandler
Output #0, mpegts, to 'udp://226.0.0.1:1234':
  Metadata:
major_brand : isom
minor_version   : 512
compatible_brands: isomiso2avc1mp41
comment : license:http://creativecommons.org/licenses/by-nd/3.0/
title   : 09--0125--Cars 2 - Trailer - 
http://www.archive.org/details/09--0125--cars2-Trailer
encoder : Lavf55.48.100
Stream #0:0(eng): Video: mpeg2video, yuv420p, 576x240, q=2-31, 200 kb/s, 24 
fps, 90k tbn, 24 tbc (default)
Metadata:
  creation_time   : 1970-01-01 00:00:00
  handler_name: VideoHandler
  encoder : Lavc55.69.100 mpeg2video
Stream #0:1(eng): Audio: mp2, 44100 Hz, stereo, s16, 384 kb/s (default)
Metadata:
  creation_time   : 1970-01-01 00:00:00
  handler_name: SoundHandler
  encoder : Lavc55.69.100 mp2
Stream mapping:
  Stream #0:0 - #0:0 (h264 (native) - mpeg2video (native))
  Stream #0:1 - #0:1 (aac (native) - mp2 (native))
Press [q] to stop, [?] for help
frame= 2075 fps= 24 q=31.0 Lsize=7782kB time=00:01:26.45 bitrate= 
737.4kbits/s
video:2797kB audio:4053kB subtitle:0kB other streams:0kB global headers:0kB 
muxing overhead: 13.593935%
[lusr@localhost media_files]$



***
 ffserver says Unknown VideoCodec: libx264, but I assume libx264 is enabled in 
 ffmpeg.
 Please let me know how this issue can be resolved?
 logs of ffserver and ffmpeg as below:

 ffserver version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 
 4.8.3-1)
   configuration:

 ffmpeg version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 
 4.8.3-1)
   configuration:

I don't see --enable-libx264 anywhere in the (empty) configuation line printed 
by both ffmpeg and ffserver.


The information contained in this e-mail and any accompanying documents may 
contain information that is confidential or otherwise protected from 
disclosure. If you are not the intended recipient of this message, please 
immediately alert the sender by reply e-mail and then delete this message. Any 
dissemination, distribution or other use of the contents of this message by 
anyone other than the intended recipient is strictly prohibited. R Systems has 
taken every reasonable precaution to minimize the risk, but is not liable for 
any damage you may sustain as a result of any virus in this e-mail. You should 
carry out your own virus checks before opening the e-mail or attachment.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] ffserver Unknown VideoCodec: libx264

2014-09-11 Thread James Darnley
On 2014-09-11 14:20, Ajay Parashar wrote:
 Please find detail logs of ffmpeg as below:

 ffmpeg -re -i Cars2.mp4 -f mpegts udp://226.0.0.1:1234
 ffmpeg version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers
   built on Sep  3 2014 17:01:53 with gcc 4.8.3 (GCC) 20140624 (Red Hat 
 4.8.3-1)
   configuration:

This hasn't changed.  If you don't build ffmpeg/ffserver with libx264
you cannot encode using libx264.

Are you trying to show me something else?

And do not top post.




signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] FFMPEG RTSP Streaming

2014-09-11 Thread Claudiu Rad

On 9/11/2014 10:43 AM, Imran Husain wrote:


Q-3 What can be the input for ffserver? Can we capture soundcard as an
input for ffserver?(because of feeds(2-step process for streaming ) it
increase delay).



you should have everything you need at 
https://trac.ffmpeg.org/wiki/Streaming%20media%20with%20ffserver


study that and you'll know how to combine ffmpeg with ffserver and it 
should probably do the job you need.
ffmpeg alone isn't for streaming. ffserver is the streamer with data fed 
by ffmpeg.


--
Claudiu
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread einguste
For reference

http://pastebin.com/va9tCWzV
external int ModPlug_Load

http://pastebin.com/Dy3Gu1Fj
#include libmodplug/modplug.h
MODPLUG_EXPORT ModPlugFile* ModPlug_Load(const void* data, int size);



signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread einguste
For reference

http://pastebin.com/va9tCWzV
external int ModPlug_Load


http://pastebin.com/Dy3Gu1Fj
#include libmodplug/modplug.h
MODPLUG_EXPORT ModPlugFile* ModPlug_Load



signature.asc
Description: OpenPGP digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread einguste
For reference

http://pastebin.com/va9tCWzV
external int ModPlug_Load


http://pastebin.com/Dy3Gu1Fj
#include libmodplug/modplug.h
MODPLUG_EXPORT ModPlugFile* ModPlug_Load
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] configure error with enabling libmodplug

2014-09-11 Thread einguste
Sorry I reposted same message to the list...
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] ffserver to iOs and Android

2014-09-11 Thread Michele Polese
Hi everybody.
I'm trying to understand if I can do this thing with ffmpeg and ffserver.
I would like to install ffmpeg on a raspberry pi (actually I'm doing that,
it's compiling) and use it as an input for a ffserver feed. So far so good.
Then I would like to stream this feed to devices with iOs and Android, but
I don't understand clearly what can I do. Thank you very much.
Michele
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] Audio input device on OS X

2014-09-11 Thread Elliott Balsley
I’m trying to stream audio from my Macbook’s internal microphone using ffmpeg, 
but can’t figure out how to get the input device.  From what I’ve read online, 
it sounds like avfoundation doesn’t yet support audio.  I try listing devices 
for qtkit, but it only mentions video devices too.

$ ffmpeg -f qtkit -list_devices true -i 
ffmpeg version 2.3.git-9b8eedd Copyright (c) 2000-2014 the FFmpeg developers
  built on Sep  8 2014 10:53:54 with Apple LLVM version 5.1 (clang-503.0.40) 
(based on LLVM 3.4svn)
  configuration: --prefix=/opt/local --enable-swscale --enable-avfilter 
--enable-avresample --enable-libmp3lame --enable-libvorbis --enable-libopus 
--enable-libtheora --enable-libschroedinger --enable-libopenjpeg 
--enable-libmodplug --enable-libvpx --enable-libspeex --enable-libass 
--enable-libbluray --enable-gnutls --enable-fontconfig --enable-libfreetype 
--enable-libfribidi --disable-indev=jack --disable-outdev=xv 
--mandir=/opt/local/share/man --enable-shared --enable-pthreads 
--cc=/usr/bin/clang --enable-vda --arch=x86_64 --enable-yasm --enable-gpl 
--enable-postproc --enable-libx264 --enable-libxvid --enable-nonfree 
--enable-libfdk-aac --enable-libfaac
  libavutil      54.  7.100 / 54.  7.100
  libavcodec     56.  1.100 / 56.  1.100
  libavformat    56.  3.100 / 56.  3.100
  libavdevice    56.  0.100 / 56.  0.100
  libavfilter     5.  0.103 /  5.  0.103
  libavresample   2.  1.  0 /  2.  1.  0
  libswscale      3.  0.100 /  3.  0.100
  libswresample   1.  1.100 /  1.  1.100
  libpostproc    53.  0.100 / 53.  0.100
[QTKit input device @ 0x7fb4a3c28880] QTKit video devices:
[QTKit input device @ 0x7fb4a3c28880] [0] FaceTime HD Camera (Built-in)
: Input/output error
retina:~ elliott$ 

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user