Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (71)

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

  • Use the faster (new Date()).getTime().

    22 mars 2013, par blueimp
    m js/jquery.fileupload.js
    
    Use the faster (new Date()).getTime().
    

    See http://jsperf.com/date-now-vs-new-date-gettime/4

  • Broadcast is interrupted while streaming udp with ffmpeg

    3 juillet 2023, par ömer gümüş

    When I start a UDP stream with ffmpeg on Debian 11 server, I'm trying to transfer this UDP stream to set-top boxes via the Stalker portal. However, when I start watching these UDP streams through VLC or on the set-top box itself, the stream stops after about 5 minutes or so. But ffmpeg on Debian keeps running without any issues. I can observe that the command is running continuously. I think I need to make a configuration on the Debian server to ensure the continuous transmission of this UDP stream, but I couldn't find the right method to apply. What do you think I should try ?

    


    ffmpeg -re -i input.m3u8 -max_muxing_queue_size 9999 -c:v copy -c:a copy -strict experimental -tune zerolatency -b:v 1050k -maxrate 1300k -bufsize 4000k -g 60 -f mpegts "udp ://239.100.1.1:5001 ?pkt_size=1316"

    


  • FFMPEG - broadcast "infinite" mp4 udp via HLS

    18 janvier 2023, par BladesV

    I have a script which sends an mp4 video via udp in an infinite loop, simulating a live stream.
I want to broadcast it via HLS live.

    


    I use the following command :

    


    


    ffmpeg -i udp :// : -c:v libx264 -b:v 3000k -c:a aac -b:a 128k -f hls -hls_time 10 -hls_list_size 0 -hls_segment_filename /output%03d.ts

    


    


    But it doesn't work.
Ffmpeg produces no output most of the time, except when I try to send a very small video, in which case it seems to work, but only after it is done receiving the whole video.

    


    Any help would be appreciated.
Other methods to accomplish the same as well.