Recherche avancée

Médias (3)

Mot : - Tags -/spip

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)

  • vf_pullup : simplify, fix double free error

    25 mars 2014, par wm4
    vf_pullup : simplify, fix double free error
    

    The memory allocation for f->diffs was freed multiple times in some
    corner cases. Simplify the code so that this doesn’t happen.

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

    • [DH] libavfilter/vf_pullup.c
  • Force ffmpeg to quit when input resolution changes

    22 octobre 2022, par rednine

    I'm using ffmpeg to restream a live feed. Unfortunately occasionally the input resolution changes but ffmpeg continues running. The nginx rtmp server I'm using doesn't cope well with this, and continues the stream with audio, but the video is mostly black or green with some artifacts.

    &#xA;

    Ideally what I want to happen is for ffmpeg to stop on an input resolution change, as I have a script that detects ffmpeg stopping and will restart it again.

    &#xA;

    I'm using -c:v copy in my ffmpeg command as unfortunately my machine is not powerful enough to re-encode the live video on the fly to a constant resolution (not without a significant quality reduction at least)

    &#xA;

    ffmpeg -i "http://mpegts-live-stream" -c:v copy -c:a aac -ac 2 -f flv "rtmp://nginxserver/live/streamname"

    &#xA;

  • Is it possible to adjust the timeout for ffmpeg on SDP ?

    1er avril 2021, par user3474565

    I have rtpdump files that I would like to be able to convert to webm or mp4 on demand and on the fly. To do this, I'm streaming their packets out extremely rapidly and having ffmpeg read them in using an SDP file. The packets come through and are transcoded in a second or two, since the videos are fairly short. But then there is an additional 10-second wait afterward because the ffmpeg network timeout for SDP defaults to 10 seconds ; I'd like to reduce it. Unfortunately, the -timeout and -stimeout options don't seem to be available when I'm using -i with an SDP file (I get -timeout option not found).

    &#xA;

    I looked around online, and it seems that 6 or 7 years ago people were having similar issues and some people made pull requests into FFmpeg to add this as an option for RSTP and SDP. I know this went through for RSTP because it's in the documentation know ; did anything ever happen with SDP ? Is it possible for me to set this option, or maybe to terminate ffmpeg manually when I know the stream is done ?

    &#xA;