Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (44)

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

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

  • How do you setup golang on windows with the header files for goav

    18 avril 2018, par nevernew

    I’m trying to compile goav on Windows and I’ve got quite far
    I’ve compiled the ffmpeg libraries in MSYS2 and linked the packages with :

    set PKG_CONFIG_PATH=%~dp0FFmpeg\libavformat;%~dp0FFmpeg\libavcodec;%~dp0FFmpeg\libavutil;%~dp0FFmpeg\libswresample;

    which has worked !

    However, here’s the problem now :

    # github.com/giorgisio/goav/avcodec
    source\src\github.com\giorgisio\goav\avcodec\avcodec.go:14:34: fatal error: libavformat/avformat.h: No such file or directory
    //#include <libavformat></libavformat>avformat.h>

    When compiling, Golang can’t find the avformat.h (and I assume the other ffmpeg header files, but compilation terminated).

    How do I tell go where these files are ? I’ve checked and they are in the folders described in the PKG_CONFIG_PATH, but I guess it’s not looking for them there.

    Side note : I see that on linux-debian based systems I just have to do a apt-get install libavformat-dev but I want to compile on windows.

  • ffmpeg : Build failed in windows with cygwin for Android

    25 juin 2014, par Smith

    I have trying building ffmpeg for android using windows 7 and Cygwin. I have android-ndk-r9d.

    I have download the source code from here

    I have already set NDK environment variable. And updated TOOLCHAIN line to : TOOLCHAIN=echo $NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows-x86_64 because linux folder not present.

    After running ./build.sh command. I got following error :

    arm-linux-androideabi-gcc is unable to create an executable file.
    C compiler test failed.

    If you think configure made a mistake, make sure you are using the latest
    version from SVN.  If the latest version fails, report the problem to the
    ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
    Include the log file "config.log" produced by configure as this will help
    solving the problem.

    Help me to find out what I did wrong ?

  • ffmpeg converted vertically stacked .mp4 videos are not playing on windows

    7 août 2017, par Kane

    I’m trying to merge two videos in a vertically stacked video using the ffmpeg vstack filter.

    ffmpeg -i movie01.avi -i movie02.avi -filter_complex vstack output.mp4

    It works great when i play it on VLC, but Windows Media Player and some Android devices can’t play the video file.

    Edit : also tried with the pad and overlay :

    ffmpeg -i movie01.avi  -i movie02.avi -filter_complex "[0:0]pad=iw:2*ih[a];[a][1:0]overlay=0:h" output.mp4

    but still the same, it doesn’t work on WMP and some Android devices.

    It is weird because the two separate videos work fine on Windows and Android, but not the merged one.

    Does someone know what I’m doing wrong ?