Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (55)

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

  • ffmpeg not streaming properly [on hold]

    1er avril 2017, par Asad Ali

    I am using this command to capture video from my webcam and then sending it via udp :

    ffmpeg -f v4l2 -rtbufsize 500M -r 25 -i /dev/video0 -c:v libx265 -vb 1050000 -maxrate 1050000 -bufsize 0 -preset ultrafast -x265-params "fps=15" -c:a aac -b:a 128k -f mpegts udp://127.0.0.1:1234

    And then at the same time I am viewing that video in another terminal :

    ffplay -fflags nobuffer -i udp://127.0.0.1:1234

    The results are pretty bad with 4 seconds lag.

    Errors on ffmplay are following :

    • invalid NAL unit xx, skipping error parsing NAL unit

    I have read streaming documentation of ffmpeg but to no avail.
    What changes should I made in my command ?

  • FFpmeg attaching album cover to the audio is not working with Rails

    10 avril 2015, par Shilpi Agrawal

    I have some audio files of web format and i want to attach some album cover to those files. My native ffmpeg command works fine in terminal.

    ffmpeg -i audio.webm -i cover.jpg -map 0:0 -map 1:0 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    But when i run the same command in my rails app, its telling me this error :
    Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument.

    Any suggestions ?

  • How to convert video programmatically using ffmpeg

    1er août 2018, par JasonStack

    Most applications of ffmpeg both in terminal and code seem to be passing ffmpeg commands to the ffmpeg library with specific parameters. For example, you might run the following command to get an overlayed gif out of a video input and a png input :

    -i i.mp4 -i me.png -filter_complex 'overlay' -pix_fmt yuv420p -c:a copy output.gif

    Is it possible to work with the library without using commands and only programmatically ? For example, by creating an FFmpeg object, passing it relevant parameters and then reading the output file from a specific directory, preferrably using C++ or Java.