Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (40)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (9959)

  • UDP Streaming with ffmpeg - overrun_nonfatal option

    21 octobre 2022, par Julien Greard

    I'm working on a software which uses FFMPEG C++ libs to make an acquisition from an UDP streaming.

    



    FFMPEG (1.2) is implemented and running but I get some errors (acquisition crashes and restarts). The log displays the following message :

    



    *Circular buffer overrun. To avoid, increase fifo_size URL option. To survive in such case, use overrun_nonfatal option*

    



    I searched online for documentation about how to use this option, but I only got informations about how to use when running directly ffmpeg executable.

    



    Would someone know how to set the correct option in my C++ code to :
- increase fifo_size
- use overrun_nonfatal option

    



    Thanks

    


  • UDP Streaming with ffmpeg - overrun_nonfatal option

    19 juillet 2016, par Julien Greard

    I’m working on a software which uses FFMPEG C++ libs to make an acquisition from an UDP streaming.

    FFMPEG (1.2) is implemented and running but I get some errors (acquisition crashes and restarts). The log displays the following message :

    *Circular buffer overrun. To avoid, increase fifo_size URL option. To survive in such case, use overrun_nonfatal option*

    I searched online for documentation about how to use this option, but I only got informations about how to use when running directly ffmpeg executable.

    Would someone know how to set the correct option in my C++ code to :
    - increase fifo_size
    - use overrun_nonfatal option

    Thanks

  • ffmpeg command line not working

    5 mars 2016, par Cameron Swyft

    I’m still roughly new to ffmpeg and don’t really understand how its command line works. I have limited knowledge on Encoders and etc so was wondering if you could answer to why this isn’t working

    exec("ffmpeg -i $video->fullPathTemp -f mp4 -codec:v libx264 -preset medium -crf 20 -codec:a copy $video->fullPath 1> block.txt 2>&1");

    This was my old one that worked, if it helps any

    exec("ffmpeg -i $video->fullPathTemp -f mp4 -b 6000k -strict -2 $video->fullPath 2>&1");

    Much help appreciated !