Recherche avancée

Médias (91)

Autres articles (45)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6430)

  • Revision 33048 : Un flv n’a pas forcément de vidéo associée ... on écrit les metadatas ...

    18 novembre 2009, par kent1@… — Log

    Un flv n’a pas forcément de vidéo associée ... on écrit les metadatas avant pour être sûr

  • avfilter : do not use AVFrame accessor

    22 avril 2017, par Muhammad Faiz
    avfilter : do not use AVFrame accessor
    

    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavfilter/af_afade.c
    • [DH] libavfilter/af_amerge.c
    • [DH] libavfilter/af_apad.c
    • [DH] libavfilter/af_aphaser.c
    • [DH] libavfilter/af_aresample.c
    • [DH] libavfilter/af_ashowinfo.c
    • [DH] libavfilter/af_astats.c
    • [DH] libavfilter/af_biquads.c
    • [DH] libavfilter/af_channelmap.c
    • [DH] libavfilter/af_channelsplit.c
    • [DH] libavfilter/af_dynaudnorm.c
    • [DH] libavfilter/af_join.c
    • [DH] libavfilter/af_pan.c
    • [DH] libavfilter/af_volume.c
    • [DH] libavfilter/af_volumedetect.c
    • [DH] libavfilter/asrc_flite.c
    • [DH] libavfilter/avf_aphasemeter.c
    • [DH] libavfilter/avf_showcqt.c
    • [DH] libavfilter/avf_showspectrum.c
    • [DH] libavfilter/avfilter.c
    • [DH] libavfilter/buffersrc.c
    • [DH] libavfilter/f_drawgraph.c
    • [DH] libavfilter/f_loop.c
    • [DH] libavfilter/f_metadata.c
    • [DH] libavfilter/f_select.c
    • [DH] libavfilter/fifo.c
    • [DH] libavfilter/framepool.c
    • [DH] libavfilter/setpts.c
    • [DH] libavfilter/src_movie.c
    • [DH] libavfilter/vf_bbox.c
    • [DH] libavfilter/vf_blackdetect.c
    • [DH] libavfilter/vf_blackframe.c
    • [DH] libavfilter/vf_colormatrix.c
    • [DH] libavfilter/vf_crop.c
    • [DH] libavfilter/vf_cropdetect.c
    • [DH] libavfilter/vf_deflicker.c
    • [DH] libavfilter/vf_deinterlace_vaapi.c
    • [DH] libavfilter/vf_drawtext.c
    • [DH] libavfilter/vf_eq.c
    • [DH] libavfilter/vf_idet.c
    • [DH] libavfilter/vf_ocr.c
    • [DH] libavfilter/vf_overlay.c
    • [DH] libavfilter/vf_psnr.c
    • [DH] libavfilter/vf_readeia608.c
    • [DH] libavfilter/vf_readvitc.c
    • [DH] libavfilter/vf_scale.c
    • [DH] libavfilter/vf_showinfo.c
    • [DH] libavfilter/vf_ssim.c
    • [DH] libavfilter/vf_swaprect.c
    • [DH] libavfilter/vf_vectorscope.c
    • [DH] libavfilter/vf_waveform.c
    • [DH] libavfilter/vsrc_testsrc.c
  • FFmpeg : MD5 hash of M3U8 playlists generated from same input video with different segment durations (after applying video filter) don't match

    30 juillet 2020, par Saurabh P Bhandari

    Here are a few commands I am using to convert and transize a video in MP4 format to a M3U8 playlist.

    &#xA;

    For a given input video (MP4 format), generate multiple video segments with segment duration 30 seconds.

    &#xA;

    ffmpeg -loglevel error -i input.mp4 -dn -sn -an -c:v copy -bsf:v h264_mp4toannexb -copyts -start_at_zero -f segment -segment_time 30 30%03d.mp4 -dn -sn -vn -c:a copy audio.aac&#xA;

    &#xA;

    Apply a video filter (in this case scaling) on each segment and convert it to a M3U8 format.

    &#xA;

    ls 30*.mp4 | parallel &#x27;ffmpeg -loglevel error -i {} -vf scale=-2:144 -hls_list_size 0 {}.m3u8&#x27;&#xA;

    &#xA;

    Store the list of m3u8 files generated in list.txt in this format file &#x27;segment-name.m3u8&#x27;

    &#xA;

    for f in 30*.m3u8; do echo "file &#x27;$f&#x27;" >> list.txt; done&#xA;

    &#xA;

    Using concat demuxer, combine all segment files (which are in M3U8 format) and the audio to get one final m3u8 playlist pointing to segments with duration of 10 seconds.

    &#xA;

    ffmpeg -loglevel error -f concat -i list.txt -i audio.aac -c copy -hls_list_size 0 -hls_time 10 output_30.m3u8&#xA;

    &#xA;


    &#xA;

    I can change the segment duration in the first step from 30 seconds to 60 seconds, and compare the MD5 hash of the final M3U8 playlist generated in both the cases using this command :

    &#xA;

    ffmpeg -loglevel error -i <input m3u8="m3u8" playlist="playlist" /> -f md5 -&#xA;

    &#xA;

    The MD5 hash of the output files differ, i.e., video streams of output_30.m3u8 and output_60.m3u8 are not the same.

    &#xA;

    Can anyone elaborate on this ?

    &#xA;

    (I expected the MD5 hash to be the same)

    &#xA;