Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (112)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (14968)

  • How to loop TS file in m3u8 playlist

    7 août 2023, par Aleksandar

    I want to create m3u8 playlist, like this :

    



    #EXTINF:-1,LIVE STREAM
http://example.com/live01.ts


    



    When this file ended I want repeat in loop.
After live01.ts ended, need to start again and do this infinity in loop.

    



    Is this possible ?

    


  • How to loop TS file in m3u8 playlist

    23 novembre 2016, par Aleksandar

    I want to create m3u8 playlist, like this :

    #EXTINF:-1,LIVE STREAM
    http://example.com/live01.ts

    When this file ended I want repeat in loop.
    After live01.ts ended, need to start again and do this infinity in loop.

    Is this possible ?

  • how to put EXEC command in loop in TCL with windows platform

    26 février 2019, par M. D. P

    how to put EXEC command in loop in TCL with windows platform.

    I need to run EXEC command continuously. but the problem after its first execution it stops.

    my code is

    proc a {} {
     set a 1
     for {set i 0} {$i < 10} {incr i} {
       puts "I inside first loop: $i"
       exec ffmpeg -f dshow -benchmark -i "video=Integrated Webcam" \
               -s 1280x720 c:/test/sample_image.avi
     }
    }
    a

    The above program should capture 10 video. but it captures only one video and comes out from the loop and stops the execution.

    can any of my friend help me by providing me the answer with the required modification in code.