Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7014)

  • Are there any resources listing current codecs and formats not supported by FFmpeg ?

    4 mars 2020, par Alexander Swann

    We are building a service where we do not know what format/codec a video uploaded by a user is in. Due to the nature of the application, we expect input video formats to be very fragmented, diverse and niche. We are currently using FFmpeg to transcode input formats to a consistent output (e.g. mp4).

    Due to the above scenario, I would like to establish a general list of what formats and codecs are not currently supported by FFmpeg. This is so I can research other open source video transcoding tools which I can utilise to fill in the gaps and allow our service to be more reliable for the user.

    Are there resources online that can help at least get a general idea of what might not be supported by FFmpeg ?

  • FFMPEG Online Redistribution in IIS Server Streaming Onvif IP Camera

    23 avril 2015, par Benny Chen

    I’m very new with ffmpeg. Consider the following case :

    I have several onvif ip camera connected to the network with an IIS server inside it. I’d like to allow client to streaming to any of ip camera inside the network but it must through the IIS server.

    So basically each of ip camera will stream to IIS server in single stream and IIS server will re-distribute to many client who request it. My question is how to setup iis server to works with this scenario ? And an example of ffmpeg command line to read from rtsp ip camera and send it the iis server which will re-distribute it to client.

  • ffmpeg and use of the ildct flag in progressive encoding

    14 décembre 2023, par Mikolaj

    I've encountered an intriguing scenario where someone else has programmed an ffmpeg encoding command with flags that seem puzzling, and I'm having difficulty understanding their purpose.

    


    The command in question is :

    


    ffmpeg -loglevel info -y -r 29.97 -start_number 0 -i image_sequence_%4d.png -vcodec dnxhd -vf format=yuv422p10,colorspace=bt709:iall=bt601-6-625:fast=1 -b:v 220M -flags +ildct output.mov


    


    I've been struggling to find information on what the addition of ildct does to the output. It appears to be influencing the media to perceive it as interlaced, even though it is, in fact, progressive. Using the flag ildct seems counterintuitive and unproductive.