Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (60)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4635)

  • flac_parser.c : fix case when final frame is a false positive

    28 juin 2013, par Michael Chinen
    flac_parser.c : fix case when final frame is a false positive
    

    Should fix https://ffmpeg.org/trac/ffmpeg/ticket/2552
    Only did minimal testing on a few files and fate.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/flac_parser.c
  • avcodec/ffv1enc : Slice combination is unsupported

    6 octobre 2023, par Michael Niedermayer
    avcodec/ffv1enc : Slice combination is unsupported
    

    We always write minimal slices, the size calculation is wrong in some
    corner cases but as its always 1x1 (minus1) we can for now just hard-code it

    This helps with ticket 5548

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1enc.c
  • Using Gstreamer server to redirect a h264 source to diferent clients

    1er septembre 2017, par Thadeu Antonio Ferreira Melo

    We currently have a solution using ffmpeg to capture and stream the user desktop (windows) to a FFServer(linux) over the Internet. The server than can redirect the stream to clients on the PC, Android or Web browser. Using UDP or RTPS

    Our goal is to reduce the user latency and keep the bitrate down. For small scale tests are working fine. However, FFserver seems to be abandoned and we are facing some crashes and performance issues.

    It seems GStreamer server is in a better support state by the dev community.

    I have download and compile the gstreamer server 1.8, but the examples are not very clear.

    For the sake o simplicity I would like to have a local server that could receive h264 data stream from ffmpeg in one port of the local host and redirect it to another port.

    What is the minimal, simplest way to make that binding ?