Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (97)

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

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

  • 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 (6619)

  • avformat/sccdec : Fix position of returned subtitle packets

    1er octobre 2021, par Andreas Rheinhardt
    avformat/sccdec : Fix position of returned subtitle packets
    

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/sccdec.c
  • avio : Do not consider the end-of-buffer position valid

    24 janvier 2015, par Luca Barbato
    avio : Do not consider the end-of-buffer position valid
    

    Trigger a refill if the seek action moves the pointer
    at the end of the buffer.

    Before this patch the read action following the seek would trigger
    the refill, while write action would write outside the buffer.

    In the Libav codebase few muxers seek forward outside of what
    already has been written so it is quite unlikely to experience
    the problem with the default buffer size.

    CC : libav-stable@libav.org

    • [DH] libavformat/aviobuf.c
  • How to control inserting position when inserting video frames to pure audio file with ffmpeg

    6 mai 2014, par teddy

    Inserting video frames into pure audio flv file(may call it audio.flv) can make it seekable.I do this with ffmpeg using the following command :

    /usr/bin/ffmpeg -y -loop 1 -i /root/testimage.jpg -i /file/audio.flv -s 2x2 -t 90 -r 1 -g 0 -acodec copy /tmp/out.flv 2>&amp;1

    The number 90 in command is specify the file duration.this can work well except one thing : The output files for several executions of the previous command is not same. After i analysed the file’s with flvparser i found that the position of the first video tag of these files were not same.

    1. For the first situation, the first video tag is the third tag, which is following script tag
    2. For the second situation, the first video tag is the fifth tag, there are three audio tags between it and script tag.
    3. For the third situation, the first video tag is the sixth tag.

    I just got these three situations for my test. But other video tags are in the same position of tag-index in output file. I have no idea why is just the first video tag has different position. I want all video tag will be at same tag-indexes. Could anyone give me some advise ? Thanks !