Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (95)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9267)

  • Encountered problems when trying to run the code of article "Compressed Video Action Recognition", beginner, need some guidance, thanks a lot

    27 décembre 2018, par Wonderful

    Here is the problem I encountered.
    enter image description here

  • What is ffmpeg trying to do when fps is shown gradually decreasing for a given frame ?

    30 mars 2015, par eternalthinker

    I’ve been trying to create an animated overlay over an FLV video, and trying to get the output in MP4 format. I initially used ffmpeg version 1.26. But, as the filters seem to support better options with the latest format, I compiled ffmpeg version 2.61 from source.

    Now the encoding seems to work fine, but the command stays at one point for too long, where it is seen that the fps drops to smaller values, and the ’drop’ value changes accordingly. I used the fps filter to supply fps=25 option, and now the encoding is stuck at the same point, only the drop value remains 0, while fps is shown dropping to smaller values, taking a long time as before.

    enter image description here

    In the screenshot above, all values remain same, while fps keep dropping to smaller values. After 10fps, it drops by 0.1 and continues past 1, to 0.9 etc. I didn’t wait until it went down further, as the whole thing was taking too much time.

    What can I do to avoid this, and tell ffmpeg to move on with one framerate ? That is, to finish encoding after the 21.45 seconds shown here, and not try to tweak fps or whatever it is trying to do here.

    The full command I am using is this :

    ffmpeg -y -i BaseVideo.flv  -loop 1 -i 1overlay.png  -loop 1 -filter_complex '[1:v] fade=out:20:20:alpha=1:start_time=4:d=3:c=white [V2]; [0:v][V2] overlay, fps=25' -c:v libx264 -strict -2 result.mp4
  • Solving `libavcodec-ffmpeg.so.56 : cannot open shared object file : No such file or directory` on Ubuntu 17.10

    13 février 2018, par Ionică Bizău

    When running a specific script, I’m getting the following error :

    libavcodec-ffmpeg.so.56: cannot open shared object file: No such file or directory

    I think it’s because ffmpeg 56 is not installed, because I recently upgraded from Ubuntu 16.04 to 17.10.

    How can I get this shared object file ?