Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (53)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (9638)

  • Red5 server + ffmpeg feed stream, and cannot play the stream

    16 juillet 2014, par user1914692

    Ubuntu 12.04,

    (a) start Red5 server in Terminal 1

    (b) feed a stream to the Red5 server in Terminal 2

    ffmpeg -re -i '/usr/share/red5/webapps/oflaDemo/streams/avatar.flv' -vcodec libx264 -ab 128k -ac 2 -ar 44100 -r 25 -s 320x240 -vb 660k -f flv 'rtmp://localhost/oflaDemo/streamTest'

    Terminal 2 shows some messages that it is streaming.

    (c) play the stream
    I use Movie Player : rtmp ://localhost/oflaDemo/streamTest

    [Result] An error occured. Stream contains no data.

  • FFmpeg error count in C/C++

    22 mai 2018, par dave

    In my C/C++ application I need to count decoding errors. I’m not familiar with ffmpeg library. Is there any way to do it without grabbing errors from terminal ? For example in terminal I got

    [h264 @ 008df020] error while decoding MB 34 0, bytestream 3152

    Any ideas ? Thanks in advance.

  • Run FFMPEG mimized/hidden using python subprocess [duplicate]

    2 septembre 2020, par Idanq

    So I'm running the following command :

    


    subprocess.call(["ffmpeg", "-i", "test1.mp4", "test1.mp3"], shell=False)


    


    But when I run it as an .pyw (which does not launch a controlling terminal), it opens a terminal for the FFMPEG, is there a way to make it hidden or even minimized ?

    


    Thanks for any help !