Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

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

  • send live video using javascript

    2 novembre 2019, par andres1415

    i need to send a live streaming from pc to pc , both of them using just the web browser (IE, firefox o chrome), exist a library (javascript) that could help me to push the stream from the sender to the media server (ffmpeg-ffserver, wowza, etc).

  • Creating a simulated HLS live stream from multiple MP4 sources with ffmpeg

    27 janvier 2017, par Navid Gharib

    I’ve already tried to create HLS stream from a UDP continuous input stream, it was fairly easy, now I want to create a simulated live HLS stream from multiple MP4 sources with ffmpeg, the idea behind it is to be able to create a TV channel with non-live data, so the input must be a loop of non-live data to simulate live stream continuity. I tried to do it with the below command but after the first round, ffmpeg exits with this error :

    concat:1.mp4|2.mp4|3.mp4" Resource temporarily unavailable.

    ffmpeg command :

    ffmpeg -i "concat:1.mp4|2.mp4|3.mp4" -strict experimental -sn  -ac  2  -map_metadata  -1  -s  720x576  -g  250  -c:v  libx264  -pix_fmt  yuv420p  -flags  -global_header  -hls_time  10  -hls_list_size  5  -hls_wrap  12  -hls_flags  delete_segments  -f  hls  -strftime  1  -segment_time  10  -segment_format  mpegts  -segment_list_flags  +live  -hls_allow_cache  0  -segment_wrap  12  -segment_list_size  5  -hls_base_url  http://192.168.1.100/0/  -hls_segment_filename  /data/0/live_0_%02d.ts  /data/0/live_0.m3u8

    If anyone has a nice solution to this issue, I would appreciate any input.

    Cheers,
    Navid

  • Live streaming RTMP to HTML5

    28 septembre 2016, par astralmaster

    I have a RTMP live stream coming from Unreal Media Server that I need to display on a HTML5 page with <video></video> tag. So far I am thinking of using ffmpeg libraries to transcode the stream with H.264 codec and output it to a .mp4 file and then access it through http protocol like this : http://ip_addr/output_from_ffmpeg.mp4 I am, however, uncertain if this would play the whole output file from the beginning or stream it live. My current ffmpeg command for transcoding the stream is :

    ffmpeg -i rtmp://IP_addr_of_rtmp_stream:5119/live/Roulette -c:v libx264 -maxrate 1000k -bufsize 2000k -g 50 output.mp4

    Could anyone point me in the right direction ? I have also read in the docs that ffserver is able to achieve this but windows build is unavailable for it.