Recherche avancée

Médias (91)

Autres articles (43)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (7444)

  • build : more fine-grained dependencies for documentation build tools

    22 novembre 2013, par Diego Biurrun
    build : more fine-grained dependencies for documentation build tools
    

    Perl is needed to build the manual pages, texi2html for the HTML pages.

    • [DBH] configure
    • [DBH] doc/Makefile
  • build : fix build with —disable-encoders

    15 juillet 2014, par Clément Bœsch
    build : fix build with —disable-encoders
    

    draw_edges() should probably be moved somewhere else to avoid
    mpegvideo*enc* dependency to decoders.

    • [DH] configure
  • Why error happened when build ffmpeg by ndk-build ?

    26 mars 2014, par Martin

    I have try build the ffmpeg for Android in Windows 7 , but it error when ndk-build.

    And the error log is like the following :

    Wun@Wun-PC ~/ffmpeg/jni/ffmpeg
    $ ndk-build
    SharedLibrary  : libffmpeg.so
    C:/cygwin/home/Wun/ffmpeg/obj/local/armeabi/libavcodec.a(log2_tab.o):(.rodata+0x0): multiple definition of `ff_log2_tab'
    C:/cygwin/home/Wun/ffmpeg/obj/local/armeabi/libavformat.a(log2_tab.o):(.rodata+0x0): first defined here
    C:/cygwin/home/Wun/ffmpeg/obj/local/armeabi/libavutil.a(log2_tab.o):(.rodata+0x0): multiple definition of `ff_log2_tab'
    C:/cygwin/home/Wun/ffmpeg/obj/local/armeabi/libavformat.a(log2_tab.o):(.rodata+0x0): first defined here
    collect2: ld returned 1 exit status
    /home/Wun/android-ndk-r8b/build/core/build-binary.mk:378: recipe for target '/home/Wun/ffmpeg/obj/local/armeabi/libffmpeg.so' failed
    make: *** [/home/Wun/ffmpeg/obj/local/armeabi/libffmpeg.so] Error 1

    I have already remove the
    OBJS-$(CONFIG_SHARED)                  += log2_tab.o
    in the Makefile of libavformat and libavcodec.

    But the problem still happened...

    Should I delete the libavcodec.a , libavformat.a , libavutil.a and libswscale.a , and rebuild again ??

    Does somebody know how to solve this problem ?

    Thanks in advance.