Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (104)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • ffmpeg live stream to website html5

    31 août 2013, par roastbeef

    what I want to do is use a webcam or screen capture and broadcast to my site. Ive heard about apple's http streaming but i'm not interested because it's support seems limited. Can someone guide me into the right direction ? I would live to use html5 video. thanks

  • 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