Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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)

  • Specifying track title or language in MPEG DASH MANIFEST

    10 février 2019, par Ramesh Navi

    I am creating a manifest to playback Adaptive WebM using DASH. Everything working pretty fine but I need language-name/track-name instead of bitrate. Is it supported ? How can update/optimize to support such feature ?

    Manifest creation :

    ffmpeg \
    -f webm_dash_manifest -i webm240.webm \
    -f webm_dash_manifest -i webm360.webm \
    -f webm_dash_manifest -i webm480.webm \
    -f webm_dash_manifest -i webm720.webm \
    -f webm_dash_manifest -i audio1.webm \
    -f webm_dash_manifest -i audio2.webm \
    -f webm_dash_manifest -i audio3.webm \
    -f webm_dash_manifest -i audio4.webm \
    -c copy -map 0 -map 1 -map 2 -map 3 -map 4 -map 5 -map 6  -map 7 \
    -f webm_dash_manifest \
    -adaptation_sets "id=0,streams=0,1,2,3 id=1,streams=4,5,6,7" \
    manifest.mpd

    Player audio track selection :

    enter image description here

  • lavf/dashenc : Write media trailers when DASH trailer is written.

    3 décembre 2018, par Andrey Semashev
    lavf/dashenc : Write media trailers when DASH trailer is written.
    

    This commit ensures that all (potentially, long) filesystem activity is
    performed when the user calls av_write_trailer on the DASH libavformat
    context, not when freeing the context. Also, this defers media segment
    deletion until after the media trailers are written.

    • [DH] libavformat/dashenc.c
  • FFMPEG DASH - Live Streaming a Sequence of MP3 Clips

    4 décembre 2018, par Daniel

    I am attempting to create a online radio application using FFMPEG - an audio only DASH stream.

    I have a directory of mp3 clips (all of the same bitrate and sample size) which I am encoding to the AAC format and outputting to a mpd.

    This is the current command I am working with to stream a single mp3 file :

    ffmpeg -re -i <input />.mp3 -c:a aac -use_timeline 1 -use_template 1 -window_size 5 -f dash <out>.mpd
    </out>

    (Input and output paths have been substituted for < input >.mp3 and < output >.mpd in this snippet)

    I am running a web server and have made the mpd accessible on it. I am testing the stream using VLC player at the moment.

    The problem :
    Well, the command works, but it will only work for one clip at a time. Once the next command is run immediately proceeding the completion of the first, VLC player will halt and I need to refresh the player to continue.

    I’m aiming for an uninterrupted stream wherein the clips play in sequence.
    I imagine the problem is that a new mpd is being created with no reference to the previous one, and what I ought to be doing is appending segments to the existing mpd - but I don’t know how to do that using FFMPEG.

    The question : Is there such a command to append segments to a previously existing mpd file in FFMPEG ? or am I coming at this problem all wrong ? Perhaps I should be using FFMPEG to format the clips into these segments, but then adjusting the mpd file manually.

    Any help or suggestions would be very much appreciated !