Recherche avancée

Médias (91)

Autres articles (46)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • fate : Add a test for AAC ELD480.

    28 janvier 2015, par Alex Converse
    fate : Add a test for AAC ELD480.
    

    The source is er_eld_2100np_48_ep0.mp4 from the official test set.

    • [DH] tests/fate/aac.mak
  • Merge commit ’9c15ef35d404fca2adc31276c1eedb11cf485461’

    13 octobre 2013, par Michael Niedermayer
    Merge commit ’9c15ef35d404fca2adc31276c1eedb11cf485461’
    

    * commit ’9c15ef35d404fca2adc31276c1eedb11cf485461’ :
    oggparsevorbis : support official chapter extension

    Conflicts :
    libavformat/oggparsevorbis.c

    See : 04b9836274f390e39879c2666f7967990f0382cc
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/oggparsevorbis.c
  • Monitoring ffmpeg two-passes encoding

    31 décembre 2024, par Hodol

    I'm new in FFMPEG.

    &#xA;

    According to the official guide, https://trac.ffmpeg.org/wiki/Encode/VP9 I use the following command to convert a large h.264 file :

    &#xA;

    ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 1 -an -f null /dev/null&#xA;ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 2 -c:a libopus output.webm&#xA;

    &#xA;

    However, the pass-1 takes too long time and it does not log progress. With -report option I can see something is in progress but I don't know how long I should wait.

    &#xA;

    Here's questions :

    &#xA;

      &#xA;
    1. Is there any way to see the progress of 1-pass ?
    2. &#xA;

    3. Is there any way to speed up the process ?
    4. &#xA;

    &#xA;

    Thank you,

    &#xA;