Ffserver can't start. (Address family not supported by protocol)

Does anyone can successfully use the latest ffserver from Arch ? It refuse to start and give me the "Address family not supported by protocol"  on my system.
The ffserver error message is:
$ ffserver -f ./ffserver.conf
ffserver version 0.7.6, Copyright (c) 2000-2011 the FFmpeg developers
built on Oct 3 2011 13:04:32 with gcc 4.6.1 20110819 (prerelease)
configuration: --prefix=/usr --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-postproc --enable-shared --enable-x11grab --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libschroedinger --enable-libopenjpeg --enable-librtmp --enable-gpl --enable-version3 --enable-runtime-cpudetect --disable-debug
libavutil 50. 43. 0 / 50. 43. 0
libavcodec 52.122. 0 / 52.122. 0
libavformat 52.110. 0 / 52.110. 0
libavdevice 52. 5. 0 / 52. 5. 0
libavfilter 1. 80. 0 / 1. 80. 0
libswscale 0. 14. 1 / 0. 14. 1
libpostproc 51. 2. 0 / 51. 2. 0
bind(port 8090): Address family not supported by protocol
and the ffserver.conf is just as simple as follows:
Port 8090
# bind to all IPs aliased or not
BindAddress 127.0.0.1
# max number of simultaneous clients
MaxClients 1000
# max bandwidth per-client (kb/s)
MaxBandwidth 10000
# Suppress that if you want to launch ffserver as a daemon.
NoDaemon
<Feed feed1.ffm>
File /tmp/feed1.ffm
FileMaxSize 800M
</Feed>
<Stream status.html>
Format status
</Stream>
<Stream test.swf>
Feed feed1.ffm
Format swf
VideoCodec flv
NoAudio
# Audio bit rate at 16 instead of 44 reduces bandwidth a lot! ;)
# AudioBitRate 16
# idem for sample rate
# AudioSampleRate 22050
# Bitrate for the video stream: QUADRATAZZI
VideoBitRate 90
# Ratecontrol buffer size, non esagerare, meno e' meglio (?!?)
VideoBufferSize 1000
# Number of frames per second: SCATTICAZZI
VideoFrameRate 3
#VideoQMin 1
#VideoQMax 5
VideoSize 352x288
PreRoll 15
#Noaudio this if you want video only
</Stream>
some basic info on my system is:
$ pacman -Q ffmpeg linux glibc
ffmpeg 20111003-1
linux 3.0.6-2
glibc 2.14-6
Any help is welcome.

Does anyone can successfully use the latest ffserver from Arch ? It refuse to start and give me the "Address family not supported by protocol"  on my system.
The ffserver error message is:
$ ffserver -f ./ffserver.conf
ffserver version 0.7.6, Copyright (c) 2000-2011 the FFmpeg developers
built on Oct 3 2011 13:04:32 with gcc 4.6.1 20110819 (prerelease)
configuration: --prefix=/usr --enable-libmp3lame --enable-libvorbis --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-postproc --enable-shared --enable-x11grab --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libschroedinger --enable-libopenjpeg --enable-librtmp --enable-gpl --enable-version3 --enable-runtime-cpudetect --disable-debug
libavutil 50. 43. 0 / 50. 43. 0
libavcodec 52.122. 0 / 52.122. 0
libavformat 52.110. 0 / 52.110. 0
libavdevice 52. 5. 0 / 52. 5. 0
libavfilter 1. 80. 0 / 1. 80. 0
libswscale 0. 14. 1 / 0. 14. 1
libpostproc 51. 2. 0 / 51. 2. 0
bind(port 8090): Address family not supported by protocol
and the ffserver.conf is just as simple as follows:
Port 8090
# bind to all IPs aliased or not
BindAddress 127.0.0.1
# max number of simultaneous clients
MaxClients 1000
# max bandwidth per-client (kb/s)
MaxBandwidth 10000
# Suppress that if you want to launch ffserver as a daemon.
NoDaemon
<Feed feed1.ffm>
File /tmp/feed1.ffm
FileMaxSize 800M
</Feed>
<Stream status.html>
Format status
</Stream>
<Stream test.swf>
Feed feed1.ffm
Format swf
VideoCodec flv
NoAudio
# Audio bit rate at 16 instead of 44 reduces bandwidth a lot! ;)
# AudioBitRate 16
# idem for sample rate
# AudioSampleRate 22050
# Bitrate for the video stream: QUADRATAZZI
VideoBitRate 90
# Ratecontrol buffer size, non esagerare, meno e' meglio (?!?)
VideoBufferSize 1000
# Number of frames per second: SCATTICAZZI
VideoFrameRate 3
#VideoQMin 1
#VideoQMax 5
VideoSize 352x288
PreRoll 15
#Noaudio this if you want video only
</Stream>
some basic info on my system is:
$ pacman -Q ffmpeg linux glibc
ffmpeg 20111003-1
linux 3.0.6-2
glibc 2.14-6
Any help is welcome.

Similar Messages

  • Address family not supported by protocol family: bind

    Over the past few days a number of users have reported connection issues with our application. We've been able to track the problem to this line of code:
    ServerSocketChannel sc = ServerSocketChannel.open();
    sc.socket().bind(new InetSocketAddress("localhost", 0)); <- error thrown
    The following error is thrown:
    java.net.SocketException: Address family not supported by protocol family: bind
    sun.nio.ch.Net.bind(Native Method)
    sun.nio.ch.ServerSocketChannelImpl.bind(Unknown Source)
    sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    I've read this is something to do with an IPv4 / IPv6 issue. But what I don't understand is that our users have had this working fine for months and we've never had any problems in the past, but within the last couple of days 10 people have contacted us, all with the same issue. We've not released any patches so we've not introduced the problem. Does anyone know what might have changed in the past few days? Did Microsoft release a patch to modify the IPv 4 / 6 protocols?
    Apparently the issue might be resolved in Java7, but we have thousands of users, and rolling out a new version of Java is a big upheaval.
    Any ideas???
    BBB

    It uses a JRE that is isolated for our application, so Java updates 'shouldn't' affect it. I have a sneaking suspicion that a Vista update may have changed something, but I can't be sure.
    I'm working through the problem with one of our users, and I've changed the code from:
    ServerSocketChannel sc = ServerSocketChannel.open();
    sc.socket().bind(new InetSocketAddress("localhost", 0));To
    ServerSocket sc = new ServerSocket();
    sc.bind(new InetSocketAddress("localhost", 0));This works and I'm able to get an available port. However, later in the code it runs this section of code to connect the socket:
         void connect() throws IOException, InterruptedException {
              int retry;
              for (retry = 0; retry < MAX_RETRY; retry++) {
                   try {
                        channel = SocketChannel.open();
                        channel.configureBlocking(false);
                        //connect to server
                        channel.connect(serverAddr);
                        //register events to listen
                        channel.register(selector, SelectionKey.OP_CONNECT);
                        while (!channel.isConnected()) {
                             if (selector.select(1) > 0) {
                                  Set readyKeys = selector.selectedKeys();
                                  Iterator i = readyKeys.iterator();
                                  while (i.hasNext()) {
                                       SelectionKey key = (SelectionKey) i.next();
                                       i.remove();
                                       SocketChannel keyChannel = (SocketChannel) key
                                                 .channel();
                                       if (key.isConnectable()) {
                                            if (keyChannel.isConnectionPending()) {
                                                 keyChannel.finishConnect();
                                            break;
                        break;
                   } catch (Exception e) {
                        channel.close();
                        channel = null;
                        try {
                             Thread.sleep(150);
                        } catch (Exception ex) {
              if (retry == MAX_RETRY) {
                   throw new InterruptedException("Maximum retry number reached!");
              channel.register(selector, SelectionKey.OP_READ);
         }It's now falling over on this line:
    channel.connect(serverAddr);
    java.net.SocketException: Address family not supported by protocol family: connect
    serverAddr is a InetSocketAddress, channel is a SocketChannel, which appears not to be supported on the machine that are having these connection issues.
    I'll be honest, I have little or no experience of implementing Sockets, and since I can't replicate the actual problem that our users are having it makes it even hard to fix it or try to code a workaround. The code above is from an OpenSource project, i.e. it's not something I wrote. In other words, I'm kinda up the 'proverbial creek'!
    Could anybody be kind enough to steer me in the right direction for a workaround that doesn't use a SocketChannel? It really would be appreciated!
    BBB

  • SRWC 2.2_13 Option not supported by Protocol

    Hi,
    First of all, I know what i'm trying to do is unsupported however my question remains.
    I'm trying to run the EA1 bits on my Vostro Laptop running Solaris Express Build 107.
    Installation of SRSS 4.2 EA1 runs just fine, aswell the installation of SRWC 2.2. However if i try to connect
    to a windows environment i'm getting
    SO_KEEPALIVE: Option not supported by protocol
    SO_KEEPALIVE: Option not supported by protocol
    /opt/SUNWuttsc/bin/uttsc[104]: 7543 Segmentation Fault
    Does anyone have some pointers where I could check to get srwc 2.2_13 running on Solaris Express?
    Regards,
    patrick

    You can ignore the SO_KEEPALIVE messages. They're caused by a bug in the 'uttsc-bin' program (which is the real SRWC program, 'uttsc' is just a launcher) but they're harmless. You might see similar messages in other SRSS logfiles, you can ignore those too.
    The segfault is the killer. There's probably nothing you can do about that yourself, but if you can capture a corefile from the failing process and send that to Sun then they should be able to figure out what's going wrong and either fix it or tell you how to work around it. To do that you'll first have to use 'coreadm' to enable corefile collection for set[ug]id processes. By default cores aren't generated for programs that run with elevated privilege. That'll go something like this:
    mkdir -p -m 0700 /var/core/uttsc-bin
    coreadm -g /var/core/%f/%p-%t
    coreadm -e global-setid
    Then run 'uttsc' and after it reports the segfault look in /var/core/uttsc-bin for a core file whose name is <process-id>-<timestamp>. That's the core file you should send to Sun. To do that, send a message to the SRS5 EA feedback mail address or follow up in this thread and someone will give you an address to send it to. (Don't send the core file to the EA feedback address. It'd be rude to broadcast such a large file to all of the people who are monitoring that address.)

  • Fatal error: Client does not support authentication protocol requested by server; consider upgrading MySQL client

    Fatal error: Client does not support authentication protocol
    requested by server; consider upgrading MySQL client in
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on line 9
    This is the error that comes up on the server where the site
    sits. The database is working on my local machine with the local
    settings, but wont connect due to the above.
    I think im using MySQL client 3.23 How do i upgrade?
    I found this on MySQL site:
    http://dev.mysql.com/doc/refman/5.0/en/old-client.html
    I'm not sure how to edit the connection string to make it
    accept the vaules.

    The_FedEx_Guy wrote:
    > Fatal error: Client does not support authentication
    protocol requested by
    > server; consider upgrading MySQL client in
    >
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on
    > line 9
    > I think im using MySQL client 3.23 How do i upgrade?
    The MySQL client that the error refers to isn't the version
    of MySQL,
    but the MySQL library bundled with PHP. It sounds as though
    your hosting
    company has upgraded to MySQL 4.1 or higher, but is still
    using PHP 4.
    > I'm not sure how to edit the connection string to make
    it accept the vaules.
    You can't. It's the way that the user account passwords are
    stored in
    MySQL. You need to get the hosting company to upgrade to PHP
    5 or to
    reset the passwords in MySQL using the OLD_PASSWORD()
    function. This
    needs to be done by someone with top-level administrative
    privileges on
    the database.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • "Desktop does not support requested protocol" - vmware client on OS X 10.8

    Down loaded vmware client 1.7 on myiMac running Mountain Lion. I get the following issue - "Desktop does not support requested protocol"
    Can anyone advise or guide me?

    Thank you, understood, and I will not uninstall anything, but do I install this current update 3.8.2. v1.1?
    My current system does not match what is needed for it according to the information on this page ...
    http://support.apple.com/en-us/HT201068
    The system requirements needed for the update are OS X 10.9 or later, and my system is OS X 10.8.5.

  • Error In Receiver BC adapter(EOIO not supported by protocol BC.)

    Hi Experts ,
    My Scenario is ABAP proxy to SAP BC .I had  bellow error  in Receiver BC adapter .
    Adapter Framework caught exception: Delivery semantics EOIO not supported by protocol BC.
    Error Delivering the message to the application using connection BC_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.InvalidParamException: Delivery semantics EOIO not supported by protocol BC..
    Please help how to resolve this .
    Regards
    Upendra.V
    Edited by: upendra v on Oct 4, 2010 2:08 PM

    HI Anuradha,
    Check the below link for receiver mail configuration and follow the steps accordingly.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0a27c01-26b0-2c10-bd8a-94498efa7ff6?quicklink=index&overridelayout=true
    Regards,
    Naveen

  • Address book not supported on this architecture

    Hi, can anyone point me in the right direction? My address book no longer opens and displays "You cannot open the application "Address Book" because it is not supported on this architecture." the icon itself has changed to sheets of paper with a ruler, pencil with a big circle and diagonal line.

    I'm having the same problem. It happened after i upgraded to 10.5.8. It stopped working after the upgrade. I recovered the old address book from my time capsule from this morning, and that's when i got the "not supported on this architecture" message.
    thanks
    Message was edited by: mdgeek27

  • Roving error message on black screen at start up "Input not supported)

    HP Pavilion media center a1547c,  running XP.  Changed the resolution because the icons appeared larger and the screen went black with a roving error message "Attention: Input not supported" message box is white with grey stripes top and bottom.  On restarting,  WindowsXP logo comes up, then error message appears but I can hear the Windows "chimes".   Anyone?

    Start Windows XP in safe mode.  Press the power button and then begin tapping the F8 key before Windows boots up.  Choose Safe Mode with command prompt. While in safe mode, start system restore by typing rstrui.exe and pressing enter.  Choose a restore point dated before before the initial problem began. This may resolve the issue. If it does, fantastic.  If not, then continue with the troubleshooting as described below.
    When  Windows restarts consider two troubleshooting scenarios to isolate the issue. What you need to know is whether the problem lies with the PC's video output of the LCD display.
    1) connect a different display to the PC  and log into Windows to see if the windows desktop is normal.
    2 )install a low powered (inexpensive and less than 1GB VRAM) PCI Express  x16 video card. You need to see if that corrects the display issue with the original display connected. That will show you if the motherboard's video output is the issue.
    Don't forget to post your result here in your thread.
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Weblogic Server 10.0 MP1 while starting: Client VM not supported

    Dear All,
    Installation of Weblogic serever completed successfully but, while starting the weblogic server I am getting the following error/message: Client VM not supported.
    Please provide suggestion or an idea on what to do. The details are provided below.
    Processor: Intel Quad core 64bit
    OS: windows server 2008 R2 64 bit
    Java: JDK 1.5 update 21 64 bit
    Weblogic: Server 10.0 MP1 64 bit for windows
    Regards,
    Edited by: user4198347 on Feb 5, 2011 11:48 PM

    Re: Installation error: Weblogic Server 10.0 MP2

  • My Mac X10.5.8 PCG5. Can't open Firefox 4 'not supported on this architecture' why not?

    When I tried to open Firefox 4 a dialogue box opened stating "Can't open the application Firefox because it is not supported on this architecture"

    For older Macs that aren't supported in Firefox 4.0, try TenFourFox for PowerPC's running Mac 10.4.11 & 10.5.8 . <br />
    http://www.floodgap.com/software/tenfourfox/

  • Can developers read Address Book Notes?

    Hope someone can help. When allowing an app to read your iOS address book, can the developers read your notes? Or do they only have access to names and emails/phone numbers? There can be a lot of information stored in Address Book such as anniversaries, birthdays, home and work address etc. Is this all open to developers to record? Thanks in advance.

    For anyone wondering, it appears developers have access to "everything" in your address book. This includes the Notes section and any birthdays and other important dates you have setup in Address Book.
    It would seem logical for Apple to provide safeguards to protect parts of the address book from Developers. Perhaps the ability to restrict them to only phone numbers. Surprised not to hear about this more from privacy advocates.

  • Can't import mpeg video - not supported

    Production Premium user.
    The whole purpose of multitracking against video is useless as I've just found out Audition does not support MPEG MPEG-2.
    I went to the Apple site where I was led to believe that buying the
    QuickTime MPEG-2 Playback Component for Windows
    would give me a fix to the QuickTime component - nope - just wasted £15 on an add-on that doesn't work. The player opens and plays as if it were reading the file but no video (black) - and no audio. Apple, please can I have my £15 back?
    Anyone else really hacked off with this, especially having sat watching a "Senior Evangelist" gush about how great Audition is for Multitacking against video.

    Hey Steve, thanks for your reply, but not to leave you out...
    Your comment "...because I don't do video..."
    Now here's me thinking that Production Premium with Prem Pro and AE etc was geared toward video editors and video producers like me... So the inclusion of an application like Audition is aimed at a wider market. Hey Ho... Rather like Canon finding that their DSLRs could do HDV video (but not very well) but had other USPs.
    Report Back:
    <File> <Sequence... Right Click Edit Adobe Audition...Sequence> <Export without or with Preview Video>
    Defaults to AVI... AVI if left up to its own render is rubbish - pixilated and low def - especially when you're used to working in HDV. And just try undocking the video panel to a 32-inch plasma - oh no...
    Reformatting to H.264 and importing H.264 it just can't handle cross application satisfactorily. Stutter playback - in Audition - and outside using an undocked panel.
    I operate i7 hex intel 970 24GB tri channel RAM and 5 drive HDD with SSD OS on Windows 7.
    This is just not an application which can claim Multitrack mixing to video sync - okay perhaps in the DV and those early days but not now. Rather reminds me of old high-end audio console digital software - always maintained its not the the software but the user. It rather looks like you development guys just didn't think this was important - well not in the short-term.
    Not good enough for my needs. Steve - I don't know what you use Audition for but it's not professsional video applications - as you state. But thank you for replying.
    6/10, and only for the fact it tried but fell over.
    Edit: Forgot to add I'm also running Nvidia GTX580 1.5GB Video Card.

  • Can't synch - file type not supported

    When synching music from ITunes 9 to my IPod Mini (3.77 GB capacity) I can load some songs but for many songs I get the message that they cannot be synched because the file type is not supported. All my files are the same types - there is a combination of .wma and MPEG-4 files for each song in my ITunes Library directory. I don't know which files are used/supported and I don't know what to do....
    Thanks,
    David

    If the WMA files are "unprotected", iTunes for Windows can convert them when you add them to your library. It should do this automatically.
    See: How to add songs from your hard drive to iTunes.
    Importing WMA files into iTunes for Windows.
    If not, see: How to convert a song to a different format using iTunes.

  • Can't sync Address Book note field to iPhone contacts

    Hi:
    I make heavy use of the "note:" field in my MacBook Address Book app. I store all kinds of detailed info about people, organizations, etc. in that field. I would like to be able to access that information on my iPhone 3G, but the phone's Contacts app has no corresponding "note" field.
    Could this be a result of the way I imported data into my MacBook when I first got it?
    In searching the fora, I found several people who said their iPhone contacts sync nicely with the Address Book note, and others who say it doesn't sync at all. Can anyone please shed some light on this for me?
    Thanks!

    Not quite sure what you mean by "editing" but I've tried every method of selecting, deleting, cursor placement, backspacing, and typing I can think of -- again, with and without the Edit button clicked. I did seem to accumulate a huge number of duplicates along the way, and there were more than a thousand cards in my Address Book; maybe I went over the limit?

  • Can oracle starts ctxsrv? Not using shell command

    I am wondering if ctxsrv can be started by oracle procedure calls.
    Once I restart oracle, I don't have to start ctxsrv manually( sometimes just forgot to do so ).

    Go to the services in the control pannel, then select the perticular servide select there the service select properties with right click, and then change the Service start type from manual to automatic.
    thats all
    regards,
    khaleel

Maybe you are looking for