Recherche avancée

Médias (91)

Autres articles (101)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8243)

  • Inline background, one less HTTP request.

    1er janvier 2013, par scottschiller

    m demo/index.css Inline background, one less HTTP request.

  • http/https for ffmpeg in android

    1er mars 2015, par trololo

    Can somebody explain how to build ffmpeg with http?
    I’m using flags --enabled-protocols --enabled-protocol=http --enabled-protocol=https --list-protocols
    while compiling i see http as protocol but the resultant ffmpeg

    03-01 22:12:35.221: D/APlay(3657): Supported file protocols:
    03-01 22:12:35.221: D/APlay(3657): Input:
    03-01 22:12:35.221: D/APlay(3657): cache
    03-01 22:12:35.221: D/APlay(3657): concat
    03-01 22:12:35.221: D/APlay(3657): crypto
    03-01 22:12:35.221: D/APlay(3657): data
    03-01 22:12:35.221: D/APlay(3657): file
    03-01 22:12:35.221: D/APlay(3657): hls
    03-01 22:12:35.221: D/APlay(3657): pipe
    03-01 22:12:35.221: D/APlay(3657): subfile
    03-01 22:12:35.221: D/APlay(3657): rtmp
    03-01 22:12:35.221: D/APlay(3657): rtmpe
    03-01 22:12:35.221: D/APlay(3657): rtmps
    03-01 22:12:35.221: D/APlay(3657): rtmpt
    03-01 22:12:35.221: D/APlay(3657): rtmpte
    03-01 22:12:35.221: D/APlay(3657): Output:
    03-01 22:12:35.221: D/APlay(3657): file
    03-01 22:12:35.221: D/APlay(3657): md5
    03-01 22:12:35.221: D/APlay(3657): pipe
    03-01 22:12:35.221: D/APlay(3657): rtmp
    03-01 22:12:35.221: D/APlay(3657): rtmpe
    03-01 22:12:35.221: D/APlay(3657): rtmps
    03-01 22:12:35.221: D/APlay(3657): rtmpt
    03-01 22:12:35.221: D/APlay(3657): rtmpte

    What I’m doing wrong ???

  • How to stream with ffmpeg via http protocol

    29 juillet 2022, par Boehmi

    I'm currently doing a stream that is supposed to display correctly within Flowplayer. 
First I send it to another PC via RTP. Here, I also checked with VLC that the codec etc. arrive correctly, which they do.

    



    Now I want to expose this stream to Flowplayer as a file, so it can be displayed, via something I used in VLC : 
http://localhost:8080/test.mp4
for example.

    



    The full line I got is : ffmpeg -i input -f mp4 http://localhost:8080/test.mp4

    



    However, no matter how I try to do this, I only get an input/output error. Is this only possible with something like ffserver or another ?

    



    What I think is this doesn't work because ffmpeg can't act as a server ; on VLC it works since it can. (Though VLC ruins the codecs I set and it can't be read afterwards for some reason)

    



    A (sort of) workaround I can use is saving the RTP stream to a file, and then letting flowplayer load it. This, however, only works once the file is not accessed anymore ; I get a codec error otherwise.