Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (56)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (9806)

  • MSE Does not show duration when MPEG-DASH segments are created with FFmpeg

    15 mars 2023, par WaveLink

    I am trying to create a system that streams DASH segments to the browser, where it gets decoded by Media Source Extensions. When using MP4Box, the init segment loads the duration into the player, but the version generated by FFmpeg does not.

    


    I believe this is due to some sort of header missing from the init segment generated by FFmpeg, but I have not been able to figure it out. Here is the command I use to generate the files :

    


    ffmpeg -i .\source.opus -c:a libopus -c:v none -seg_duration 1 -dash_segment_type mp4 -preset ultrafast -use_timeline 1 -use_template 1 -streaming 1 -init_seg_name "segment_init.mp4" -media_seg_name "segment_$Number$.m4s" -fflags +genpts -f dash ./out.mpd
When using MP4Box, this is the config I use :

    


    MP4Box -dash 1000 -rap -profile live -segment-name "segment_$Number" .\out.mp4
In both cases, the audio does play, and both of them contain similar headers, but the FFmpeg version just does not contain the media duration in the init segment, or at least the MSE implementation cannot read it.

    


    I tested this in Chrome, Firefox, and Edge, and all of them behave the same.

    


    Thanks for any help.

    


  • avcodec/utils : allocate a line more for VC1 and WMV3

    11 janvier 2023, par Michael Niedermayer
    avcodec/utils : allocate a line more for VC1 and WMV3
    

    Fixes : out of array read on 32bit
    Fixes : 54857/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1_fuzzer-5840588224462848

    The chroma MC code reads over the currently allocated frame.
    Alternative fixes would be allocating a few bytes more at the end instead of a whole
    line extra or to adjust the threshold where the edge emu code is activated

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/utils.c
  • lavfi/vf_xfade : rewrite activate inputs handling

    2 juin 2023, par Marvin Scholz
    lavfi/vf_xfade : rewrite activate inputs handling
    

    The old code was not properly handling a bunch of edge-cases with
    streams terminating earlier and also did not properly report back EOF
    to the first input.

    This fixes at least one case where the filter could stop doing
    anything :

    ffmpeg -f lavfi -i "color=blue:d=10" -f lavfi -i "color=aqua:d=0" -filter_complex "[0][1]xfade=duration=2:offset=0:transition=wiperight" -f null -

    • [DH] libavfilter/vf_xfade.c