Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (63)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9972)

  • In libav "rtmp ://url live=1" is not working as in FFmpeg

    17 janvier 2017, par Yuvraj Kakkar

    I am trying to play live rtmp stream, streamed via Red5 server.
    Command used is
    ffmpeg -i "rtmp ://IP/live/1234 live=1" -f flv rtmp ://IP/live/1234_56
    The above command for live streaming works well with ffmpeg on Window OS. But unable to stream live rtmp video below command is run on libav ,Ubuntu OS using avconv tool.

    avconv -i "rtmp ://IP/live/1234 live=1" -f flv rtmp ://IP/live/1234_56

    Even i used *rtmp_live* AVOption to play live stream or to replace live=1 parameter as given below-
    avconv -i "rtmp ://IP/live/1234 rtmp_live" -f flv rtmp ://IP/live/1234_56

    But this command doesn’t work. Please tell me how to use rtmp_live or live=1 with avconv tool

    Thanks in advance.

  • Delayed broadcast of live stream with FFMPEG [closed]

    19 août 2022, par Bahiz

    I have an m3u file. I want to buffer and stream this broadcast for 60 seconds with FFMPEG. Is there a way to this ?
I want to pause the live broadcast for 60 seconds and broadcast it again
That's how I do it, but I'm still getting the live stream as it is. 60 Seconds doesn't lag behind.

    


    -i http://192.168.1.1:1935/hdstv/playlist.m3u8 -map 0:0 -c:v copy -af adelay=60000 -f flv rtmp://192.168.1.1:1935/live/haylox


    


  • wowza + live + ffmpeg + hls player, how to create the playlist.m3u8 ?

    9 mai 2018, par Ziv Barber

    I’m trying to setup a wowza live test server and then I can play hls from my mobile app. It do work without any problem for vod. I can play it in my app. I can also see the .m3p8 file if I enter this uri in the browser.
    I tried to do the same in live mode (my goal is to test some streaming parameters for live streaming). I tried to use ffmpeg to create the live stream :

    ffmpeg -re -i "myInputTestVideo.mp4" -vcodec libx264 -vb 150000 -g 60 -vprofile baseline -level 2.1 -acodec aac -ab 64000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb -strict experimental -f mpegts udp ://127.0.0.1:10000

    I created a "source file" and connected it to the "Incoming Streams".
    I can see in my application’s Monitoring / Network tab that it do getting the data from ffmpeg.

    My problem is how to get the playlist.m3p8 file so I can play it from inside my app (hls based) ?

    Again, for now I need a way to test playing with the streaming settings and in real live I’ll have a real live streaming source.