Recherche avancée

Médias (91)

Autres articles (40)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

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

Sur d’autres sites (4342)

  • First x frames from a video

    27 juin 2012, par Dow

    I need to get the first x frames from a video (usually FLV) and turn it into a GIF. The idea is to use these GIFs as a short preview for the real thing.

    At the moment, we're using ffmpeg and imagemagick to do that :

    ffmpeg -y -i movie.flv -pix_fmt rgb32 -r fps extracted/%d.png

    convert extracted/0.png ... extracted/50.png -delay 4 -loop 0 \
    -set dispose Background -sample 256x256> preview.gif

    So basically, first the frames are extracted, converted to PNG, then the PNGs are put together again into a GIF. There are a lot of unnecessary steps involved here.

    Does anyone have any suggestions for speeding up this process ?

    Thanks in advance !

  • ffmpeg filter in my own application

    26 juin 2018, par user25571

    How can I use one of filters from ffmpeg library in my own application. In fact, I only wanna detect silence in my audio files and so I must use af_silencedetect.c file. This file is one of ffmpeg filters that can be utilized with -af silencesetect command.

    Therefore my obvious question is : "What’s step-by-step procedure in using this file in my own application and which dependencies I must add to my MSVC project ?"

    Your points are appreciated in advance ....

  • get the bit stream per frame from ffmpeg record

    1er mai 2021, par Aung Myo Htut

    Is there any way to get the bitstream per frame captured by ffmpeg. I want to capture with the raspberry pi camera in real-time and get the bitstream of the frame encoded by H.264 like I frame and P frame from the bitstream of ffmpeg. Because I want to stream frame by frame from the camera node to the server. Thank you in advance.