Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (104)

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9055)

  • How can we transcode live rtmp stream to live hls stream using ffmpeg ?

    24 décembre 2022, par Kiran

    I am trying to convert a live rtmp stream to hls stream on real time.

    


    I got some idea after reading

    


    http://sonnati.wordpress.com/2011/08/30/ffmpeg-%E2%80%93-the-swiss-army-knife-of-internet-streaming-%E2%80%93-part-iv/

    


    i am able to convert the live rtmp stream to hls but not at run time. when i run the command and test for any hsl files (.m3u8 and .ts) i am not able to see but when i interrupt the command and check there i get the hls files as required.

    


    I searched on google for solution but not able to get proper answer.

    


  • Run ffmpeg as window service

    7 juin 2018, par Brad Reiter

    My setup is like this :

    It contains components :

    • Web Cam : which send out the RTP packets when i get a stream request
    • Agent server : Which receives the stream from the Webcam and forwards
      the same to ffmpeg server.
    • ffmpeg server : this where i need to run the ffmpeg as window service,
      receives the rtp stream sent by agent server and create a ts file.

    What have i done is :

    I have setup the ffmpeg in one of my dev environment using this link :

    https://video.stackexchange.com/questions/20495/how-do-i-set-up-and-use-ffmpeg-in-windows

    My problems :

    • How to make ffmpeg run as daemon.?
    • How can i make ffmpeg aware that new stream is coming from agent
      server and start creating a ts file.?
    • Is there a way in ffmpeg that i reserve ports for ffmpeg and make it
      listen to all the ports for eg : reserve 2000 - 3000 ports and listen
      to them as soon as rtp stream arrives, convert to ts stream.

    Regards

  • How to monitor volume level during ffmpeg capture

    7 septembre 2018, par Virkom

    I capture sound from soundcard, convert it to mp3 and stream to multicast IP.
    Command looks like :

    ffmpeg -f alsa -i hw:0 -async 1 -vn -acodec libmp3lame -ac 1 -ar 44100 -b:a 128k -flush_packets 0 -f mpegts -pes_payload_size 426 -mpegts_start_pid 0x44 udp://233.21.215.101:1234?pkt_size=1316

    But I need to monitor volume level of capturing. If there is no sound (or noise only) I need to switch to another (reserve) channel.

    Can I get volume level in ffmpeg output ? How I can do it ?

    P.S : I can get volume level by "volumedetect" filter but it’s not in realtime. I need realtime monitoring.

    P.P.S : I run ffmpeg programmatically from my application and can’t monitor additional windows (like video frame when I use showvolume filter).