Recherche avancée

Médias (91)

Autres articles (58)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9478)

  • mov : Rework the check for invalid indexes in stsc

    13 juillet 2016, par Vittorio Giovara
    mov : Rework the check for invalid indexes in stsc
    

    There are samples with invalid stsc that may work fine as is and
    do not need extradata change. So ignore any out of range index, and
    error out only when explode is set.

    Found-by : Matthieu Bouron <matthieu.bouron@stupeflix.com>

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] libavformat/mov.c
  • avutil/avassert : always implement av_assume with av_unreachable

    7 août, par Kacper Michajłow
    avutil/avassert : always implement av_assume with av_unreachable
    

    One of the design goals of this macro is the ability to support static
    inline predicate functions. Which is emitting warning in clang that a
    function may have side-effects and the condition will be ignored. MSVC
    doesn't emit warning, but also ignore predicate in such cases.

    Instead of using assume builtins, implement it using unreachable. Which
    solves this case for MSVC and Clang.

    This reverts ea56fe60acc139a4dc7c531f2cb9f5319cef7a09, but also extends
    it to MSVC, which is affected in the similar way.

    Signed-off-by : Kacper Michajłow <kasper93@gmail.com>

    • [DH] libavutil/avassert.h
  • Passing two named pipes as input to ffmpeg using python

    13 avril, par Kikto

    I have two av streams, one video and one audio, i'm trying to pipe both as inputs to ffmpeg

    &#xA;

    os.mkfifo(VIDEO_PIPE_NAME)&#xA;os.mkfifo(AUDIO_PIPE_NAME)&#xA;&#xA;ffmpeg_process = subprocess.Popen([    "ffmpeg", "-i", VIDEO_PIPE_NAME, "-i", AUDIO_PIPE_NAME,&#xA; "-listen", "1", "-c:v", "copy", "-c:a", "copy", "-f", "mp4", "-movflags", &#xA;"frag_keyframe&#x2B;empty_moov", "http://0.0.0.0:8081"], stdin=subprocess.PIPE)&#xA;&#xA;pipe_video = open(VIDEO_PIPE_NAME,&#x27;wb&#x27;)&#xA;pipe_audio = open(AUDIO_PIPE_NAME,&#x27;wb&#x27;) #Code stuck here&#xA;

    &#xA;

    The code stuck on pipe_audio = open(AUDIO_PIPE_NAME,&#x27;wb&#x27;) line, I'm guessing it is happening because ffmpeg only reads the first/video input and ignore the second/audio input so the pipe is not being read.

    &#xA;

    If I use only pipe_video and removing -i AUDIO_PIPE_NAME flag from ffmpeg everything works fine, but i only get the video without the audio.

    &#xA;