Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (52)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Merge commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’

    21 juin 2016, par Clément Bœsch
    Merge commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’
    

    * commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’ :
    rtpdec_vp9 : Update header parsing to spec draft 02

    This commit is a noop, see 43880f971662c6f79f58ffb373200306e155e0f5

    Merged-by : Clément Bœsch <clement@stupeflix.com>

  • Add experimental support for vp9 in iso-bmff

    15 juin 2016, par Kongqun Yang
    Add experimental support for vp9 in iso-bmff
    

    Implemented according to the draft specification
    "VP Codec ISO Media File Format Binding" :
    http://www.webmproject.org/vp9/#draft-vp-codec-iso-media-file-format-binding

    ’-strict -2’ is required to use this feature.

    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavformat/Makefile
    • [DH] libavformat/isom.c
    • [DH] libavformat/movenc.c
    • [DH] libavformat/vpcc.c
    • [DH] libavformat/vpcc.h
  • 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