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 (7076)

  • 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;

  • Using FFMPEG with QT

    7 mai 2018, par DearChild

    I’m having a problem with linking FFmpeg libraries to Qt 5.10 Projects.
    I downloaded the source code from the official website and successfully compiled and installed to my Ubuntu. I used : ./configure --enable-libvpx --disable-x86asm them : make &amp;&amp; make install
    I’m able to find the installed libraries in /usr/local/lib (which are .a libs).

    my .pro looks like this :

    INCLUDEPATH += /usr/local/include
    LIBS += -L/usr/local/lib -lavformat -lavcodec -lavutil

    but i get the output :

    /usr/bin/x86_64-linux-gnu-ld:
    /usr/loca/lib/libavformat.a(http.o):undefined reference to symbol 'inflateEnd'
    //lib/x86_64-linux-gnu/libz.so.1: error adding symbols: DSO missing from command line

    Does anyone know how to solve it ? Thanks for the attention !

    Note : I would like to static link it to my project