Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6159)

  • doc/muxers : fix docs format for DASH muxer

    28 juin 2019, par Jun Zhao
    doc/muxers : fix docs format for DASH muxer
    

    fix docs format for DASH muxer

    Reviewed-by : Gyan Doshi <ffmpeg@gyani.pro>
    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] doc/muxers.texi
  • How to synchronize HLS and/or MPEG-DASH videos on multiple clients using ExoPlayer ?

    22 mai 2019, par G C

    I’m trying to guarantee synchronization between multiple clients using DASH and/or HLS. Synchronization between each client must fall within 40 milliseconds.

    Live streaming seems to be an obvious choice. However, the only way to really get within a small time frame of synchronization would be to lower the segment times. Is this the only viable solution ? Are there any tags that would help me keep clients within 40 milliseconds to the live time ?

    Currently, I’m using FFMPEG to encode video and audio to live content.

  • Live streaming dash content using mp4box

    15 mai 2017, par galbarm

    I’m trying to live stream H.264 content to HTML5 using the media source extensions API.

    The following method works pretty well :

    ffmpeg -i rtsp://10.50.1.29/media/video1 -vcodec copy -f mp4 -reset_timestamps 1 -movflags frag_keyframe+empty_moov -loglevel quiet out.mp4

    and then :
    mp4box -dash 1000 -frag 1000 -frag-rap out.mp4

    I can take the MP4Box output (out_dashinit.mp4) and send it through Web Sockets, chunk by chunk, to a JavaScript client that feeds it to the media source API.

    However, this is not a good method for live content.

    What I’m trying to do now, is to create a single pipeline in order to do it in realtime and with the minimum possible latency.
    With FFmpeg it’s possible to redirect the output to stdout instead of out.mp4 and grab the content.
    I couldn’t figure out if it’s possible to combine MP4Box into the pipeline.

    1. Can MP4Box take the input data from a source which is not a file ?
    2. Can MP4Box grab such a content progressively (either from a file or other source) while it is arriving in realtime ? i.e. wait a little if stream stops for 1 sec and resume automatically.
    3. Same question but for the output : can it output to something which is not a file (such as stdout) and can it do so progressively so that whenever output data is ready, I will be able to take it and transfer it to the web client, essentially generating a never-ending dashed MP4.