Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6495)

  • avformat/movenc : read track title from correct key

    16 juin 2018, par Gyan Doshi
    avformat/movenc : read track title from correct key
    

    da9cc22d5bd allowed the MOV muxer to relay a custom stream handler name,
    whether populated from the input stream or user-set. However, the entry
    key didn't match the key set by the MOV demuxer, so it wasn't
    effective. Fixed.

    Due to the change, four FATE refs have to be updated. Verified that the
    target payload of the tests hasn't changed in terms of CRC.

    • [DH] libavformat/movenc.c
    • [DH] tests/ref/fate/binsub-movtextenc
    • [DH] tests/ref/fate/copy-psp
    • [DH] tests/ref/fate/copy-trac236
    • [DH] tests/ref/lavf-fate/mov_qtrle_mace6
  • Force ffmpeg to generate WebVTT for each subtitle track

    14 juin 2018, par Rogue

    I use the following ffmpeg command to generate an HLS stream from a video :

    ffmpeg -i pipe:0 \
       -y -b:a 64k -acodec aac -vcodec copy \
       -hls_time 10 -hls_playlist_type vod -start_number 0 -hls_base_url http://127.0.0.1:5000/ -hls_list_size 0 \
       -f hls -crf 20 -hls_flags split_by_time -force_key_frames "expr:gte(t,n_forced*3)"\
       -threads 4 \
       target/stream.m3u8

    It works perfectly, and to my pleasure and surprise ffmpeg generates a second m3u8 file corresponding to the subtitles that are embeded in the video file, with the appropriate .vtt files.
    The problem is that when i input a video file with more than one subtitle tracks, i only get files for the first one.
    How can i force ffmpeg to output ALL tracks as m3u8 / .vtt files ?

    Thanks a lot

  • avformat/mpegts : keep track of PMT details in AVProgram/AVStream

    18 mai 2018, par Aman Gupta
    avformat/mpegts : keep track of PMT details in AVProgram/AVStream
    

    With these fields, the user has enough information to
    detect PMT changes and switch to new streams when the PMT
    is updated with new ES pids.

    To do so, the user would monitor the AVProgram they're interested
    in for changes to pmt_version. If the version changes, they would
    iterate over the program's streams to find new streams added with
    the updated version number.

    If new versions of streams are found, then the user would first try
    to replace existing streams where stream_identifier matched.
    If stream_identifier is not available, then the user would compare
    pmt_stream_idx instead to replace the stream that was previously
    at the same position within the PMT.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavformat/mpegts.c