Recherche avancée

Médias (91)

Autres articles (50)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

  • How make typing text effect with ffmpeg ?

    23 mai 2017, par Fatas

    How i can make video with typing text effect with ffmpeg ?

    I have something like that, but i need animated text :

    ffmpeg -f lavfi \
    -i color=c=white:s=1440x900 \
    -vf drawtext="text='Some text here': fontcolor=black: fontsize=100: x=(w-text_w)/2: y=(h-text_h)/2" \
    -pix_fmt yuv420p -t 30 out.mp4

    One idea is making bunch generated .png files and then merge, but i think there is better way ?

  • GPU-accelerated video processing with ffmpeg

    29 janvier, par Wang Hai

    I want to use ffmpeg to accelerate video encode and decode with an NVIDIA GPU.

    



    From NVIDIA's website :

    



    


    NVIDIA GPUs contain one or more hardware-based decoder and encoder(s) (separate from the CUDA cores) which provides fully-accelerated hardware-based video decoding and encoding for several popular codecs. With decoding/encoding offloaded, the graphics engine and the CPU are free for other operations.

    


    



    My question is : can I use CUDA cores to encode and decode video, maybe faster ?

    


  • Tailing a logfile and processing each line is missing data when converting a file with ffmpeg

    8 avril 2014, par Chris.D

    I am running a script to tail a log file as per the code snippet below. I am running into a problem where by the line passed into $line is missing a number amount of bytes from the beginning when several lines are written to the log file at nearly the same time.

    I can check the file afterwards and see that the offending line is complete in the file so why is it incomplete in the script. Some kind of buffering issue perhaps ?

    The processing can sometimes take several seconds to complete would that make a difference ?

    #!/bin/bash
    tail -F /var/log/mylog.log | while read line
    do
      log "$line"
      ffmpeg -i "from.wav" "to.mp3"
    done

    Full line in file

    "12","","765467657","56753763","test"

    example logged $line

    657","56753763","test"

    Update
    I have done some more debugging of my code and it seems the processing that is causing the problem is a call to ffmpeg used to convert a wav to mp3. If I swap that with just a sleep then the problem goes away. Could ffmpeg effect the buffer somehow ?