Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (4)

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

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (4113)

  • php_ffmpeg module not loading in Windows 7

    28 mars 2014, par Warwick

    PLEASE help me ! I have been searching for solutions for days !

    I am running Apache 2.2.22 and PHP 5.3.21 on Windows 7.

    I have extracted and copied php_ffmpeg.dll to C :\Program Files (x86)\PHP\ext ; copied avcodex-51.dll, avformat-51.dll, avutil-49.dll and pthreadGC2.dll to C :\Windows\System32 ; and added the extension=php_ffmpeg.dll directive to php.ini. However, the module is still not loading.

    I found the following error in the PHP error log :

    PHP Warning :  PHP Startup : Unable to load dynamic library 'C :\Program Files (x86)\PHP\ext\php_ffmpeg.dll' - The specified module could not be found.

    Any help would be dearly appreciated !

  • Best streaming way for images generated on the fly

    28 novembre 2018, par Vincent Bavaro

    Good morning,
    I have a server that sends me an increasing sequence of images and I need to stream them as a VOD to anyone that, after it inputs username and password in a simple HTML5 site, accesses them. I found ffmpeg to be the best solution so I’m studying it a lot these days. I wanted to know from experts in ffmpeg and streaming, what should be my main route to follow for my purposes.

    My personal thought and what I’m working on is to have ffmpeg encode the images on the fly to a video through a pipe, and then with another command have it transformed into segmented MPeg-4 and playlist for HLS stream, I think I will use an apache webserver for that as well. Is this the best course to follow ? Anyone has better/more efficient (like a single command)/more easy solutions to develop ?

  • I'm trying to dynamically call to a folder based on path of my program

    29 juin 2020, par Jessie Wilson

    I have been working on this for a couple days and I feel like I'm going about it wrong.

    


    Say my .py program is is Desktop/TEST.
The executable I want to run is in Desktop/TEST/ExampleProgram
I want to be able to call example.exe and send CLI commands to it out of the above folder.

    


    I can do this easily if I hardcode the paths into the program. I need to know how to dynamically change this path depending on where the my program is unpacked. (I'll be using pyinstaller to turn the main .py into a .exe)

    


    I have tried doing this with ("%s" % path.abspath(path.curdir)) paired with the subprocess module. However, I feel like this is wrong. Any help would be apprecaited !