Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (74)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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 ;

Sur d’autres sites (10463)

  • Add experimental muxing support for FLAC in ISO BMFF (MP4).

    20 octobre 2016, par Matthew Gregan
    Add experimental muxing support for FLAC in ISO BMFF (MP4).
    

    Based on the draft spec at https://git.xiph.org/?p=flac.git;a=blob;f=doc/isoflac.txt

    ’-strict experimental’ is required to create files in this format.

    Signed-off-by : Matthew Gregan <kinetik@flim.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/isom.c
    • [DH] libavformat/movenc.c
  • Add experimental demuxing support for FLAC in ISO BMFF (MP4).

    21 octobre 2016, par Matthew Gregan
    Add experimental demuxing support for FLAC in ISO BMFF (MP4).
    

    Based on the draft spec at https://git.xiph.org/?p=flac.git;a=blob;f=doc/isoflac.txt

    Signed-off-by : Matthew Gregan <kinetik@flim.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mov.c
  • avformat/hlsenc : refine EXT-X-BYTERANGE support for segments

    19 septembre 2016, par Steven Liu
    avformat/hlsenc : refine EXT-X-BYTERANGE support for segments
    

    refine EXT-X-BYTERANGE tag,
    the spec link :
    https://tools.ietf.org/html/draft-pantos-http-live-streaming-19#section-4.3.2.2
    the apple doc :
    https://developer.apple.com/library/ios/technotes/tn2288/_index.html#
    //apple_ref/doc/uid/DTS40012238-CH1-BYTE_RANGE_SUPPORT_FOR_SEGMENTS

    command line :
    ./ffmpeg -i /Movies/objectC/a.mp4 -c copy -f hls -hls_time 7
    -hls_list_size 0 -hls_segment_size 2500000 -t 40 output-test.m3u8
    output :
    localhost:ffmpeg liuqi$ ll *.ts ;cat output-test.m3u8
    -rw-r—r— 1 liuqi staff 2792176 9 12 14:44 output-test0.ts
    -rw-r—r— 1 liuqi staff 3112528 9 12 14:44 output-test3.ts
    -rw-r—r— 1 liuqi staff 3377420 9 12 14:44 output-test6.ts
    -rw-r—r— 1 liuqi staff 1228016 9 12 14:44 output-test7.ts
    #EXTM3U
    #EXT-X-VERSION:4
    #EXT-X-TARGETDURATION:10
    #EXT-X-MEDIA-SEQUENCE:0
    #EXTINF:9.021000,
    #EXT-X-BYTERANGE:1334988@0
    output-test0.ts
    #EXTINF:3.000000,
    #EXT-X-BYTERANGE:721356@1334988
    output-test0.ts
    #EXTINF:3.000000,
    #EXT-X-BYTERANGE:735832@2056344
    output-test0.ts
    #EXTINF:6.000000,
    #EXT-X-BYTERANGE:1645940@0
    output-test3.ts
    #EXTINF:3.000000,
    #EXT-X-BYTERANGE:715152@1645940
    output-test3.ts
    #EXTINF:3.000000,
    #EXT-X-BYTERANGE:751436@2361092
    output-test3.ts
    #EXTINF:9.000000,
    #EXT-X-BYTERANGE:3377420@0
    output-test6.ts
    #EXTINF:3.960000,
    #EXT-X-BYTERANGE:1228016@0
    output-test7.ts
    #EXT-X-ENDLIST
    localhost:ffmpeg liuqi$

    ticket-id : #5839

    Signed-off-by : Steven Liu <lingjiujianke@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hlsenc.c