Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (68)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • 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 : (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8387)

  • ffmpeg record Xvfb and pulseaudio got sync problem

    18 mai 2020, par boygiandi

    I using ffmpeg to record Xvfb and audio from pulseaudio. Sometime the video output has the audio ahead of video ( sometime normal - it happen randomly ). The flow like this

    



    ffmpeg 
|-> video : Xvfb -> Firefox
|-> audio : pulsesaudio


    



    So I don't know where this issue come from : ffmpeg or Xvfb or Firefox or pulseaudio
I already updated ffmpeg to latest version. Tried to config pulsesaudio load-module module-udev-detect tsched=0. Nothing help.

    


  • avcodec/vp9 : assert on sane size in update_size().

    16 novembre 2013, par Clément Bœsch
    avcodec/vp9 : assert on sane size in update_size().
    

    w and h are both read as uint16 + 1 so this can not happen. A similar
    change was introduced in 97962b2 / 72ca830, with the
    av_log()+AVERROR_INVALIDDATA form, suggesting it could be triggerable
    somehow.

    Change suggested by Ronald S. Bultje.

    • [DH] libavcodec/vp9.c
  • Can't Stream Ogg From ffmpeg Through stdout

    16 janvier 2012, par dave mankoff

    To get the the crux of it, why does the first command work, but the second command does not. They produce slightly differently sized files with different contents :

    ffmpeg -i test.wav -f ogg -acodec libvorbis test.a.ogg

    ffmpeg -i test.wav -f ogg -acodec libvorbis - > test.b.ogg

    test.a.ogg will play properly and has no problems. test.b.ogg starts in the middle of the source audio and has stops and gaps in the audio. It also does not report the length of the track.

    I want to transcode source files on the fly into ogg for a program I am writing and I am trying to pipe the stdout from ffmpeg into my program. Putting the results into an intermediary file will kill performance since the transcoding is supposed to happen on demand.